home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994…tember: Reference Library / Dev.CD Sep 94.toast / Periodicals / develop / develop Issue 15 / develop 15 / develop 15
Encoding:
Text File  |  1994-07-24  |  4.5 MB  |  5,445 lines  |  [ONLN/HLX2]

Text Truncated. Only the first 1MB is shown below. Download the file for the complete contents.
  1. developThe Apple Technical Journal    GETTING STARTED WITHQUICKDRAW GXDEVELOPING QUICKDRAW GX PRINTING EXTENSIONSQUICKDRAW GXFOR POSTSCRIPT PROGRAMMERSMANAGING COMPONENT REGISTRATIONDYNAMIC CUSTOMIZATION OF COMPONENTSFLOATINGWINDOWS: KEEPING AFLOATIN THE WINDOW MANAGERWORKING IN THETHIRD DIMENSIONKON & BAL’SPUZZLE PAGEMacintoshQ & AIssue 15   September 1993Apple Computer, Inc.    E d i t o r i a l  S T A F FEditor-in-Cheek  Caroline RoseTechnical Buckstopper  Dave JohnsonOur Boss  Greg JoswiakHis Boss  Dennis MatthewsReview Board  Pete (“Luke”) Alexander, Neil Day, C. K. Haun, Jim Reekes, Bryan K. (“Beaker”) Ressler, Larry Rosenstein, Andy Shebanow, Gregg WilliamsManaging Editor  Cynthia JasperContributing Editors  Lorraine Anderson, Philip Borenstein, Robin Cowan, Toni Haskell, Judy Helfand, Rebecca Pepper, Rilla ReynoldsIndexer  Ira KleinbergA R T  &  P R O D U C T I O NProduction/Art Director  Diane WilcoxTechnical Illustration  Dave Olmos, John Ryan Formatting  Forbes Mill PressPrinting  Wolfer Printing Company, Inc.Film Preparation  Aptos Post, Inc.Production  PrePress AssemblyPhotography   Sharon BealsOn-Line Production  Forbes Mill Press    Lindsay Marshall of Rucker Huggins illustrated several QuickDraw GX features for this cover. The three g’s are from the “GX-ready” typeface, Columbine, developed by David Siegel.develop, The Apple Technical Journal, a quarterly publication of Apple Computer’s Developer Press group, is published in March, June, September, and December.The develop Bookmark CD (or the Developer CD Series disc, Reference Library edition) for September 1993 or later contains this issue and all back issues of develop along with the code that the articles describe. The develop issues and code are also available on AppleLink and via anonymous ftp on ftp.apple.com.        EDITORIAL    Another award for develop! And changes made at your request.   2    LETTERS    Letters from you, plus more from us on asynchronous routines.   3    ARTICLES    Getting Started With QuickDraw GX  by Pete (“Luke”) Alexander   A brief introduction to QuickDraw GX, and a simple GX-aware sample.   6    Developing QuickDraw GX Printing Extensions  by Sam Weiss   All about these nifty new add-ons to QuickDraw GX printing.   34    QuickDraw GX for PostScript Programmers  by Daniel Lipton   The two graphics models are compared, along with useful code snippets for each.   51    Managing Component Registration  by Gary Woodcock   For those cases where you may need to manage the component registration process, here’s how.   74    Floating Windows: Keeping Afloat in the Window Manager  by Dean Yu   A way to implement floating windows without patching traps, and a library you can use in your own application.   89    Working in the Third Dimension  by Jamie Osborne and Deanna Thomas   This article shows off a nice 3-D interface and presents a set of MacApp objects you can use to create your own such interface.   103    COLUMNS    The Veteran Neophyte: Through the Looking Glass  by Dave Johnson   Dave explores the mathematics of symmetry and finds some surprises.   71    Somewhere in QuickTime: Dynamic Customization of Components  by Bill Guschwan   A sample derived media handler that “speaks” the text track in a movie.   84    View From the Ledge  by Tao Jones   An office survival guide for the socially and politically inept.   115    KON & BAL’s Puzzle Page: I’m Here to Serve  by Konstantin Othmer and Bruce Leak   Try your skill (or is it luck?) on yet another puzzle from those masters of Macintosh machinations, KON and BAL.   132    Q & A    Macintosh Q & A   Apple’s Developer Support Center answers your product development questions.   117    INDEX    137CAROLINE ROSEDear Readers,develop does it again! We’re thrilled to announce that we’ve won another Excellence award, this time in the 1993 International Technical Publications Competition, sponsored by the Society for Technical Communication.Some things that are worth noting in this issue:•    We’re very happy to finally have a female author. Welcome to Deanna Thomas; may she be the first in a long line. •    We’ve added a strange new column called “View From the Ledge”; please let us know what you think of this irreverent (or is that “irrelevant”?) addition.•    We’re temporarily without a Print Hints or Graphical Truffles column. But there’s a lot of information about printing and graphics in our three QuickDraw GX articles.Finally, here are two changes that have happened as a result of your feedback:•    Tech Notes are numbered again, this time within each category of Note. References in develop will include the new number after the category; for example, we might refer you to the Macintosh Technical Note “Fond of FONDs” (Text 21). With this issue we finally stop giving the former number of a Tech Note, as in “(formerly #91)”; those old numbers are long gone. •    New Inside Macintosh is now on the develop Bookmark CD. It was painfully missing from Issue 14’s CD, but we have seen the error of our ways and have quickly rectified the situation.Please keep letting us know what you want; it pays!Caroline RoseEditorLETTERSNEW TECH NOTE NUMBERSIn develop Issue 14 Peter Fink complains about the loss of Tech Note numbering.  In your answer you write: “We’re always open to suggestion, but so far you’re the only one to mention this. If others reading this reply have similar feedback, I hope they’ll let us know.” Actually, I and others have complained about the loss of Tech Note numbers for quite some time, but sometimes talking about these things is like complaining about the weather. I suspect most people just grumble along and don’t complain in writing.— Johan G. E. StrandbergGood news: Numbers are back; see the editorial on page 2 and the Tech Notes on this issue’s CD. It’s too bad when people grumble without writing; the latter is much more effective, and we really appreciate the effort. Thanks!— Caroline RoseDEBUGGING LESSON FLUBThere seems to be a problem with the point made in the “Debugging Lesson” letter in the Letters section of develop Issue 14. According to the source listed, there would be no problem even if memory moved when FillWithData was called. Since the handle is being passed as a handle (that is, not dereferenced), and handles are 4-byte pointers (which get pushed onto the stack as is), FillWithData would always get a valid handle, which it can dereference internally to its heart’s content.Unfortunately, there seems to be a lot of confusion (and a great deal of paranoia) over the usage of handles. As long as     you pass handles as handles (and watch your dereferencing), you’ll be OK.—Charlie ReadingUm, oops. (Imagine, if you will, me standing gaping and red-faced, astonished at my own carelessness and idiocy.)You’re right, of course; the danger is only in passing dereferenced handles to routines in other segments, and the code in the letter passes the handle itself. I guess I just read the text and didn’t really look closely at the code before replying. Obviously, it was only intended as an example, and the writer’s point is still valid: passing dereferenced handles to routines in other segments is dangerous. You should either pass the handle itself (as the example code did!) or lock the handle first.Sorry about the confusion.—Dave JohnsonBABBLING ONI enjoyed reading Dave Johnson’s column in develop Issue 13 (“Tower of Babble”). While reading his discussion of natural versus programming languages, I think I was able to put my finger on what has bugged me about HyperTalk® for years. Natural languages imply a fluidity of meaning, giving its users great flexibility for nuances, emphasis, and brevity.  HyperTalk looks like a natural language, but it possesses none of that fluidity of meaning. In HyperCard®, SET has but one meaning.  But in my Oxford dictionary, “set” has 194 definitions! In other words, HyperCard looks so much like English, one winds up assuming that all kinds of structures could be used     as long as they make sense in English (for example, “set me to true”).Allow me to submit a suggestion, which you may wish to pass along to the software gods. Since Apple has now all but declared that C and C++ are the only computer languages the human race will ever need, maybe it would be great to have a HyperTalk-to-C translator. Why? Well, C is a write-only language (no one ever can figure out what’s happening in someone else’s C listing) and HyperTalk is a read-only language (it’s a cinch to understand, but impossible to code in). With a translator, we could write code that still could be understood, just like when we used to code in Pascal. (Yes, this is a joke, from a die-hard Pascal enthusiast.)Thanks again for a nifty column!—Kevin KillionI’m glad you liked the column. Your comment about HyperTalk is very well taken! I think that’s what always bothered me about it, too, though it was just a sort of vague unease. Unfortunately, I think people who didn’t learn “regular” programming languages first may have a distinct disadvantage: we “real” programmers know up front how limited and terse and strict programming languages are, and we don’t expect anything more. But power users who learn HyperTalk (or, more likely now, AppleScript) as their very first programming language may be in for a struggle if they don’t keep reminding themselves that it’s not a natural language.As a die-hard C enthusiast, I’ll graciously ignore your slams against my favorite language, and assume that      since you’re obviously an intelligent person, sooner or  later you’ll realize the error of your ways and come around to the truth, bemoaning the years you’ve spent in bondage to an uptight compiler.  —Dave JohnsonASYNCH SUPPORT ON A/UXAfter reading through Jim Luther’s Asynchronous Routines article in develop Issue 13, I spiffed up my application to make all my file handling asynchronous, anticipating the glorious day when all the drivers on my Macintosh support asynchronous calls. But since the SCSI Manager isn’t asynchronous yet, there’s no apparent difference to the user of my code (or to me, the hard-working programmer who wants payoff for my labors).Is there any platform or configuration I can test my application on and see the results of my effort?—Tony AmarettoTry your code on A/UX 3.0.1 (the operating system for the Apple Workgroup Server 95); it features an enhanced File Manager that supports asynchronous calls to UNIX® file systems simply by using the techniques in Jim Luther’s article. AppleShare Pro takes advantage of this capability on AWS 95 to get performance up to four times better than AppleShare 3.0’s under System 7 (your mileage, as always, will vary).For more information related to the Asynchronus Routines article, see the box on the next page.Have fun!—Dave Johnson    MORE ON ASYNCHRONOUS ROUTINES IN ISSUE 13        For developers interested in the “Asynchronous Routines on the Macintosh” article in develop Issue 13, here’s some new information that has surfaced since then.StackSpace. Contrary to the advice on page 28 of the article, you should not call StackSpace at interrupt time, because the Memory Manager might not be in a consistent state. Furthermore, StackSpace clears MemErr, which may have an adverse effect on the current process’s handling of Memory Manager errors.PPC polling. Unlike the Device Manager and File Manager, the PPC Toolbox stuffs the result of an asynchronous routine into ioResult before it’s really done with the parameter block. If your interrupt code — such as a VBL task — polls ioResult periodically to check for completion and reuses the parameter block to make another call, the system can crash because one or more system queues will be corrupted.Context switching. The System 7 Process Manager (and MultiFinder under System 6) will wait until all currently active asynchronous requests to the File Manager have completed before performing a context switch. This check was added for compatibility reasons to prevent system crashes caused by a few applications that accessed program globals within File Manager completion routines without restoring their A5 world. What this means to you is that if your application makes an asynchronous File Manager call and then calls WaitNextEvent or GetNextEvent, the system may wait for your call to complete. If the asynchronous File Manager call takes a long time to complete, it will appear to the user that the system isn’t responding.Synchronous drivers. Although you can execute low-level file access routines asynchronously, a volume’s underlying device driver may not support asynchronous operations. Once the File Manager passes a request to a synchronous driver, that driver doesn’t give up control until it has completed the task. Synchronous drivers (such as those using the current SCSI Manager) affect programs using asynchronous File     Manager calls in two ways: unexpected pauses and unsightly stack frame buildup.•    When calling the File Manager asynchronously, your program passes control to the File Manager and the request is placed in a queue or, if the queue is empty, the request is handled immediately. Either way, once a synchronous driver gets the request, it retains control until it has responded to the request. If the request takes a long time to complete, the user may think the system isn’t responding. If your program is a background task, these pauses will affect the performance of the current foreground application. To keep this to a minimum, avoid time-consuming asynchronous File Manager requests.•    Chaining asynchronous File Manager calls will work on volumes controlled by synchronous drivers, but watch out: When the driver is synchronous, the stack frames from the system and your completion routines will keep building up on the current stack until the last asynchronous call in the chain completes, or until the stack overwrites the current heap. You’ll need to break the asynchronous File Manager call chain every few completion routines. A simple way to do this is to start a Time Manager or VBL task from your File Manager call’s completion routine, and let the task start the next asynchronous File Manager call in the chain.File Sharing and AppleShare. Chained asynchronous File Manager calls can fail when either the Macintosh File Sharing or AppleShare 3.0 (not 3.0.1) file server is running. The file server software intercepts almost all calls made to the File Manager. Due to how the file server keeps track of what requests it has or hasn’t seen, there are a few situations where the file server can do the wrong thing with chained asynchronous File Manager calls. To make sure the file server sees and handles all chained asynchronous File Manager calls correctly, use two parameter blocks for the chained calls and switch parameter blocks at every completion routine.    GETTING STARTED WITH QUICKDRAW GXPETE (“LUKE”) ALEXANDERA beta version of QuickDraw GX comes to you on this issue’s CD. As you contemplate the vast scope of it all, you may wonder how you’re ever going to get your arms around this new imaging technology. Not to worry — this article will get you started. It walks you through the steps to getting QuickDraw GX up and drawing and presents a simple “GX-hip” application shell that incorporates the basics for you to experiment with.QuickDraw GX offers developers a totally new and markedly improved way of imaging on the Macintosh. Yes, you’ll have to learn the new system, but look at what you get: The API is simpler and the human interface is better. The amount of control your application can exercise over text and graphics has been greatly increased. Your application will be able to produce consistent output no matter what the output device. And extensive support for color is built in throughout the system.With the beta version of QuickDraw GX in hand, you’re no doubt eager to create a QuickDraw GX application and start drawing. This article covers just about everything you need to know to get started: initializing QuickDraw GX, using windows, creating and manipulating QuickDraw GX shapes, printing, and debugging. By way of illustration, we discuss the QuickDraw GX shell that you’ll find on this issue’s CD. But before we do that, let’s take a quick look under the hood at the major features of QuickDraw GX and how it fits into the Macintosh architecture.QUICKDRAW GX: A QUICK LOOK UNDER THE HOODQuickDraw GX coexists happily with QuickDraw, thank goodness. It doesn’t replace QuickDraw, but instead “moves in next door,” so you still live with a Macintosh Toolbox based on QuickDraw. You can run QuickDraw-based applications on a QuickDraw GX system. These applications won’t even notice that QuickDraw GX is installed, but they’ll be able to take advantage of some of the QuickDraw GX printing features, including improved background printing to all devices, desktop printers, print job queuing, and better type management. QuickDraw GX has three major pieces: graphics, typography, and printing. You can visualize the relationship of these three different pieces to each other and to QuickDraw as shown in Figure 1.Figure 1QuickDraw and the Pieces of QuickDraw GXGRAPHICSThe basic building block of QuickDraw GX graphics is the shape. A shape is an object that contains, among other things, a geometry of some type and a fill property that specifies how the geometry should be interpreted when drawn (such as framed or filled). There are four basic types of shapes, classified by the nature of the geometry they contain: geometric shapes, typographic shapes, bitmap shapes, and pictures. •    A geometric shape contains a primitive geometry: a point, a line, a curve, a rectangle, a polygon (a series of points connected by straight lines), or a path (a series of points connected by straight or curved lines). In addition, there are two other special geometric shape types: empty (no geometry at all) and full (covers the entire coordinate system). •    A typographic shape contains text, glyphs (renditions of individual characters or character combinations over which your application has direct control), or layouts (pieces of text for which QuickDraw GX automatically chooses and positions glyphs, given certain information by the application). •    A bitmap shape contains a reference to a block of memory containing a bit image, as well as information on how to interpret the bits: the pixel size, color space, color set, and color profile.•    A picture contains a list of other shapes. The shapes in the list can be other pictures, so that a picture is actually a hierarchical database of shapes.Besides containing a geometry, a shape contains references to three other objects that describe how it should be rendered. These objects are the style, the transform, and the ink.•    The style defines the pen thickness, the place where the pen draws (inside, outside, or on the geometry), the kind of start and end cap (such as round, pointy, or square), and ways to dash, join, and pattern shapes. For a text shape, the style also defines the font, size, variation, and text face.•    The transform controls the skew, scale, perspective, and clipping of the geometry. It also specifies where to draw it and how to hit-test it.•    The ink tells the system which color to draw the geometry in. Ink also includes information about the color matching and transfer mode.Some of these objects in turn contain references to other objects. For example, a transform points to a list of view port objects that describe where to draw the geometry. A view port is like a QuickDraw grafPort in that it defines an area of local space as a drawing environment. Unlike a grafPort, though, a view port doesn’t contain state information about the drawing environment (pen, color, transfer mode, and so on). A view port contains the mapping used to convert from the view port’s local space to a global space described by a view group. A view port object points in turn to a list of view device objects, which describe the clip shape, mapping, and bitmap associated with a physical device such as a monitor.A shape can also have one or more attributes, which modify the shape’s behavior. These attributes enable your application to specify how a shape is edited or how QuickDraw GX stores the shape. For example, if you set the shape attribute gxMapTransformShape, this tells QuickDraw GX that you want it to manipulate the transform referenced by the shape, instead of directly manipulating the data contained within the geometry of the shape.Figure 2 depicts the shape object and what it references. The owner count is the number of other objects within the application that reference that object. The tag list is a list of tag objects, which are simply containers for any data the application associates with the owning object.Figure 2The Shape Object and What It ReferencesTYPOGRAPHYQuickDraw GX has a sophisticated typographic model that’s fully integrated with graphics. The ability to do kerning, tracking, and justification, as well as ligatures and ornamental forms of various characters, is provided by the line layout routines, supported by the QuickDraw GX smart font format. The line layout routines work with the typographic information contained in the TrueType GX and Type 1 GX fonts to give you a ton of control over how text is placed on a page. Because QuickDraw GX typography is fully integrated with graphics, you can rotate, skew, and change the perspective of typographic shapes the same way you can geometric shapes. You can use the text shape to draw a line of text with one style. The glyph shape enables you to draw text in several styles and graphically manipulate each glyph. The layout shape uses the information contained in a TrueType GX or Type 1 GX font to automatically kern, justify, and track, and to support ligatures, final forms (special forms found at the ends of words), and ornamental forms of the various glyphs contained within the layout shape.Note that although QuickDraw GX supports all existing Macintosh font formats (Type 1, bitmap, and TrueType), to take full advantage of its extensive line layout capabilities you must use TrueType GX or Type 1 GX fonts.PRINTINGQuickDraw GX improves printing for both users and developers. Users get an improved human interface, and developers get much more control and functionality. From the application’s point of view, QuickDraw GX offers true device independence: you can send the same data to all supported devices and the output will be rendered appropriately on each device. QuickDraw GX introduces three new printing concepts: desktop printers, portable digital documents, and printing extensions. Users can create desktop printers with the Chooser. These are represented as icons on the desktop and are full Finder citizens; users can drag and drop print files and documents to them. Users can also manage the print queue and redirect print files and documents by dragging them to and from desktop printers, and can share desktop printers with other users via PrinterShare GX.A portable digital document (PDD) file contains all the objects required to render a document on a screen or printer, so you can open, review, and print the file on any system running QuickDraw GX without the application or fonts used to create the document. When a PDD file is created, only the glyphs used in the document are saved along with it; since the document can’t very well be edited, the PDD is secure for transporting fonts. When you print, you can save the print job as a PDD with or without the fonts required. If you know that the person you’re sending the PDD file to has the fonts you used, you can choose not to save the fonts with the PDD.Printing extensions are small standalone pieces of code that modify the behavior of printing and give users vastly increased control, at a system rather than a program level, over how a printed page looks. For example, through a printing extension the user can direct a printer to print “Confidential” diagonally across each page, no matter what program is doing the printing. The user selects a printing extension from a list displayed in the expanded Print, By Page Setup, and Document Setup dialogs (which appear when More Choices is clicked in the regular dialogs). The API for QuickDraw GX printing gives you easy access to information about the page size and orientation of a print job and enables you to keep the user from changing these settings. QuickDraw GX supports raster, vector, and PostScript™ devices. The bad news is that if your system is running QuickDraw GX, you won’t be able to use any non–QuickDraw GX printer drivers. The good news is that because QuickDraw GX provides system-level support for developing printer drivers, it’s a whole lot easier to develop printer drivers for QuickDraw GX than it is for the old QuickDraw-based printing architecture — you can plan on months of development time as opposed to years. And in many cases you may find that a printing extension, which is easier yet to develop, will suffice to implement the desired functionality; for more information, see the article “Developing QuickDraw GX Printing Extensions” later in this issue.PROGRAMMING AMENITIESQuickDraw GX offers you some truly useful programming goodies: libraries of handy high-level routines, extensive error-handling capabilities, and a powerful new debugging tool called GraphicsBug.THE QUICKDRAW GX LIBRARIESAs you cruise around the QuickDraw GX folder on this issue’s CD, you’ll notice a folder named Libraries. Open it and you’ll find libraries of code for many common graphics, line layout, and printing tasks. These provide sample code that most applications will need in order to create a QuickDraw GX application. But unlike Macintosh Toolbox code, this library code can be modified or extended by you to meet your own particular needs. All the library code is based on core QuickDraw GX calls. ERROR HANDLING IN QUICKDRAW GXThe goal of QuickDraw GX’s error-handling capabilities is to never allow QuickDraw GX to crash your Macintosh, and to inform you anytime QuickDraw GX can’t complete an operation. QuickDraw GX uses two different models for handling errors: one for graphics and layout errors and another for printing errors. We’ll discuss graphics and layout errors here. Printing errors are described later in this article, under “Basic Printing in QuickDraw GX.” There’s both a debugging and a nondebugging version of the combined graphics and layout portions of QuickDraw GX. The debugging version provides extensive error-handling capabilities to help you debug your applications under development. The nondebugging version is lean and mean; it has fewer error-handling capabilities and is faster than the debugging version. You can differentiate between the two versions by their sizes and version strings: the nondebugging version is smaller, and the version string for the debugging version has the word “debug” in it. When you’re developing your QuickDraw GX application, you should be using the debugging version.In the debugging version, information about internal data and drawing problems comes in three flavors: notices, warnings, and errors. Only a few selected errors and warnings are issued in the nondebugging version.Notices.A notice informs you that the operation you’re performing isn’t really needed. Notices aren’t necessarily bad things; they’re just information to help you improve the efficiency of your application. For example, if you’ve already colored a shape and you try to color it again, you’ll receive the following notice in the installed debugger:GRAPHICS NOTICE: color already setWarnings. A warning informs you that QuickDraw GX doesn’t allow the operation you’re trying to perform. While this might not cause any problems, you also might not get the result you expected. For example, if you try to use a font that isn’t available, QuickDraw GX will substitute the default font and give you the following warning:GRAPHICS WARNING: font substitution took placeErrors. An error means that QuickDraw GX couldn’t draw your shape or complete a routine. For example, if you try to draw an empty shape or one that hasn’t been defined, you’ll receive the following error:GRAPHICS ERROR: shape is nilChecking for drawing errors.Once you’ve finished developing your application, you’ll still want to be able to check for drawing errors. The QuickDraw GX routine GXGetShapeDrawError lets you do this and, in case of an error, fail in a graceful manner. For example, this code fragment checks that drawing was successful and fails if it wasn’t:GXDrawShape(gthePage);    if (drawingError = GXGetShapeDrawError(gthePage) != noDrawError)    // Your error-handling code here!Ignoring notices and warnings. Sometimes you might want to ignore a particular notice or warning because you know what you’re doing. Use these routines to ignore a notice or warning:void GXIgnoreGraphicsNotice(gxGraphicsNotice notice);void GXIgnoreGraphicsWarning(gxGraphicsWarning warning);For example, if you wanted to ignore a notice about recoloring a shape, you would make this call:void GXIgnoreGraphicsNotice(color_already_set);When you call GXIgnoreGraphicsNotice or GXIgnoreGraphicsWarning, the notice or warning is added to the top of the notice stack or warning stack, respectively. (It’s added to the stack even when not ignored, but the stack handling is taken care of behind the scenes for you in that case.) So you must balance this with a call to one of the following routines to ensure that you don’t overflow the notice or warning stack:void GXPopGraphicsNotice(void);void GXPopGraphicsWarning(void);In the nondebugging version, where notices and most warnings aren’t available, calling the GXIgnoreGraphicsXXX and GXPopGraphicsXXX routines still results in a trap call and dispatch even though they just return immediately. There may be a small performance penalty for this, so you should remember to remove the unnecessary calls for a shipping application.Grabbing errors, notices, and warnings. In the nondebugging version, you receive only a few selected errors and warnings. If you’ve tested your application thoroughly, these should be the only errors you see:out_of_memorynot_enough_memory_for_graphics_client_heapgraphics_client_memory_too_smallcould_not_create_backing_storeThese should be the only warnings you see:<<font or character>>_substitution_occurred<<map, move, scale, rotate, or skew>>_shape_out_of_range<<map, move, scale, rotate, or skew>>_transform_out_of_rangeYou probably don’t want your user to end up in a debugger or with a system bomb, so you should catch errors by calling the GXGetGraphicsError routine; you can then handle the error appropriately within your application or present it to the user. gxGraphicsError GXGetGraphicsError(gxGraphicsError *stickyError); You can also grab notices (in the debugging version only) and warnings with these calls:gxGraphicsNotice GXGetGraphicsNotice(gxGraphicsNotice *stickyNotice);gxGraphicsWarning GXGetGraphicsWarning(gxGraphicsWarning *stickyWarning);GRAPHICSBUG: A POWERFUL NEW DEBUGGING TOOLThe only way to create and modify shapes in QuickDraw GX is through the public API; you can’t operate on any data directly. This is a very good thing because it lets Apple expand the system in the future with minimal compatibility risk. But if you can’t see the data you’re working with, won’t debugging be a nightmare? Here’s where GraphicsBug comes to the rescue. GraphicsBug is an application that enables you to inspect the contents of any QuickDraw GX graphics or layout object to make sure it contains the correct information. The command set is very similar to that of MacsBug; just type “?” to get a list of the commands available. GraphicsBug works only in the debugging version of QuickDraw GX 1.0b1 but in both versions of later QuickDraw GX releases.INITIALIZING QUICKDRAW GXNow that we’ve checked out the horsepower under the hood and the amenities built in for programmers, we’re ready to get QuickDraw GX up and drawing. The first step is to initialize QuickDraw GX, but before you do, you need to make sure the user has installed it. Use the Gestalt selector 'grfx' to determine whether the graphics and typography portions of QuickDraw GX have been installed, and the Gestalt selector 'pmgr' to determine whether QuickDraw GX printing has been installed.In the case of our QuickDraw GX shell, the following routine finds out which parts of QuickDraw GX have been installed:Boolean QuickDrawGXAvailable(){    long    theFeatureInQuestion;    if (Gestalt('grfx', &theFeatureInQuestion) == noErr)    {        if (Gestalt('pmgr', &theFeatureInQuestion) == noErr)            gQDGXPrintingInstalled = true;        return (true);    }    return (false);}The QuickDraw GX shell uses the global variable gQDGXPrintingInstalled to determine if QuickDraw GX printing has been installed. If it has, the printing menu items in the File menu are enabled. Otherwise, an alert tells the user that QuickDraw GX printing hasn’t been installed, and the application works without printing.Once you know that the user has QuickDraw GX, you’re ready to initialize it. After the generic Macintosh Toolbox initialization, you create a new graphics client to allocate memory. Then you can set up error handling and validation as an aid to tracking down problems, although if you’re eager to get on with drawing, you don’t have to do this right now. Finally, you can initialize the common color library to get quick and easy color. In the QuickDraw GX shell, the routine QuickDrawGXInit does all of this initialization.CREATING A NEW GRAPHICS CLIENTA graphics client is a reference to the block of MultiFinder memory used by QuickDraw GX graphics and layout called the QuickDraw GX heap. When your application creates a new graphics client, QuickDraw GX usually allocates this block of memory. The QuickDraw GX heap contains all the graphics and layout objects your application creates while running QuickDraw GX, as well as a few objects QuickDraw GX uses to manage the heap. (See “Managing Memory in the QuickDraw GX Heap” for more details.)The simplest way to create a graphics client is to call EnterGraphics, which defines a client for you based on some fundamental assumptions. If you want to have more control over the graphics client you create, call GXNewGraphicsClient:gGraphicsClient = GXNewGraphicsClient(nil, gGraphicsHeapSize * 1024, 0L);The variable gGraphicsClient holds the new graphics client. You can use this variable anytime you need to access this graphics client. In our shell, we only need this variable when the application shuts down. The first parameter tells the Memory Manager where we want to create the QuickDraw GX heap. A nil value tells the Memory Manager to create the heap within MultiFinder memory. That’s usually where you want it, but you can also specify a pointer to a block of memory in your application heap or even the system heap. The second parameter defines the size of the heap in bytes. Our shell uses a 115K heap (gGraphicsHeapSize = 115); if you pass 0, you get the default heap size of 600K. The last parameter, named separateStack, tells QuickDraw GX to allocate a stack for the graphics client, which is necessary if that client is going to run at interrupt time. To get a separate stack, just pass any nonzero value that defines the stack size.SETTING UP ERROR HANDLING AND VALIDATIONAfter setting up the graphics client, you should enable the error, warning, and notice capabilities if you want to make debugging easier for yourself down the line. In our MANAGING MEMORY IN THE QUICKDRAW GX HEAP        The graphics and layout portions of QuickDraw GX use their own heap format and their own relocating Memory Manager to improve efficiency. Why is this necessary? The GX system is object based, so it needs the ability to quickly move graphics and layout objects from the heap onto disk when they aren’t needed and additional memory is required, and to move these objects back into memory when they’re needed. This isn’t possible with the current Memory Manager. Your application has quite a bit of control over the objects it creates in the QuickDraw GX heap. The QuickDraw GX API provides calls to unload objects from the heap, and shape attributes that indicate when a shape should be paged out of the heap to the backing store on disk. If you don’t unload the objects or set any of the shape attributes yourself, QuickDraw GX unloads the oldest objects first.You can use a GXUnload call to tell QuickDraw GX to page a graphics or layout object — specifically, a shape, style, transform, ink, color profile, color set, or tag — from the heap to the backing store on disk when the next memory management call occurs. For example, to unload a particular shape from the heap, you would use the following call: GXUnloadShape(gxShape target);QuickDraw GX maintains a reference to the objects, so it can read them from disk back into the heap if your application needs them. It does this automatically, but if     you want to improve the performance of your application, you can explicitly load graphics and layout objects with a GXLoad call. For example, to load a particular shape into the heap, you would use the following call: GXLoadShape(gxShape target);There are two shape attributes that you can set to indicate when to page a shape out to disk when memory is needed: •    When gxDiskShape is set, this shape will be the first shape to be paged out of memory to disk when memory is needed.•    When gxMemoryShape is set, this shape will be the last to be paged out to disk. It’s generally a good idea to dispose of an object as soon as you’ve finished with it. If you leave a bunch of unused objects lying around in the heap, QuickDraw GX will maintain them and page them out to disk when memory becomes tight. This wasted operation will cause your application to take a performance hit. If you have a collection of shapes, say a picture, that you won’t need for a while, you should consider flattening them to disk and then disposing of them. When you flatten a shape to disk, each object is compressed and sent to the file as a stream of data. When you dispose of the objects you just flattened, you free up some heap space.    QuickDraw GX shell we enable all three with the routines SetGraphicsLibraryErrors (which enables errors and warnings) and SetGraphicsLibraryNotices (which enables notices).The debugging version of QuickDraw GX graphics and layout provides extensive validation facilities that let you determine whether you’re passing valid data to the QuickDraw GX API and whether anything’s gone awry internally. (See “Tracking Down a Memory Trashing Problem” for details on how to use validation to find out how damage is being caused in the QuickDraw GX heap.) In general, you should always run with gxPublicValidation + gxTypeValidation while you’re developing a QuickDraw GX application. To set this level of validation, make this call:GXSetValidation(gxPublicValidation + gxTypeValidation); This setting ensures that for all calls, QuickDraw GX checks the routines on entry and makes sure that the types are correct. For example, if you call GXDrawShape with this validation setting, QuickDraw GX makes sure that the shape being passed in is a valid shape and that it’s an object of the correct type. This will result in a slight decrease in performance but will help you catch bad data earlier.Your application can validate various QuickDraw GX graphics and layout objects — shape, style, transform, ink, view port, view device, view group, color profile, color set, tag, or graphics client, or any combination — with a GXValidate call before they’re passed to a routine. For example, if you wanted to validate the inks in the heap, you would make the following call: GXValidateInk(gxInk);If you’re interested in using only these validation calls, set the validation level to gxPublicValidation.TRACKING DOWN A MEMORY TRASHING PROBLEM        Validation is a good way to track down a memory trashing problem. If the QuickDraw GX heap gets trashed, you need to know if it’s your application that’s doing the damage or if it’s QuickDraw GX. These validation levels can help you find this out: gxNoMemoryManagerValidation    = 0x0000gxApBlockValidation    = 0x0100gxFontBlockValidation    = 0x0200gxApHeapValidation    = 0x0400gxFontHeapValidation    = 0x0800gxCheckApHeapValidation    = 0x1000gxCheckFontHeapValidation    = 0x2000To see if the problem is caused by your application, add gxApHeapValidation or gxFontHeapValidation to the     types of validation you set. The one you choose depends on whether you believe the problem lies in a general API call or within the font heap (the heap separate from the QuickDraw GX heap where all the font information is cached). This type of validation checks the public API calls when they make a memory request. If your application doesn’t trash memory after adding this validation, it means that the problem is probably caused by an internal call within QuickDraw GX. In that case, add the validation level gxCheckApHeapValidation or gxCheckFontHeapValidation. This additional validation checks the memory allocation for the internal core calls. If you die at this point, you know that the internal call is causing the problem.    SETTING UP THE COMMON COLOR LIBRARYThe common color library provided by QuickDraw GX gives you a quick way to color the shapes you create. This library contains 103 common colors, including maroon, teal, fluorescent blue, apple green, Mars orange, and Venetian red. To initialize this library, make this call:InitCommonColors();With the color library set up, you can call SetShapeCommonColor to color a shape. We’ll do this later with the shapes we draw in the QuickDraw GX shell window. USING WINDOWS WITH QUICKDRAW GXNow that you’ve initialized QuickDraw GX, you need to set it up to work within a window. The first step is to create a view port and attach it to a window. Then you need to provide routines to zoom and resize the view port and to scroll its contents.Recall that QuickDraw GX draws all shapes in a view port, which contains the mapping used to convert from the view port’s local space to the global space (described by a view group). The view group determines whether the contents of the view port are drawn on the screen in a window or to an off-screen area. A view port also contains its clip shape, describing the area in which drawing can take place. ATTACHING A VIEW PORT TO A WINDOWBy attaching a view port to a window, you guarantee that all the shapes you draw to the view port will be drawn in the correct location even after the user moves the window. You attach a view port to your window with this call: gxViewPort    windowParentViewPort;windowParentViewPort = GXNewWindowViewPort(theWindow);If all goes well, windowParentViewPort contains a reference to the view port attached to the window (the parent view port). You can’t change the clip shape or mapping of this particular view port, because QuickDraw GX automatically maintains all the characteristics of the parent view port. This is a problem if you don’t want your scroll bars to be overwritten. However, you can attach a view port to the parent view port (see Figure 3) and then adjust this newest view port (the child view port) to reflect changes due to scrolling or resizing the window. Defining the new view port’s bounds. Before we create a new view port we need to determine its bounds. We can find the bounds of the window by converting the window’s QuickDraw portRect into a fixed-point QuickDraw GX rectangle. The following utility routine does this.Figure 3The View Port Hierarchyvoid GetFixedWindowBounds(WindowPtr myWindow, gxRectangle *boundingBoxPtr){    GrafPtr            oldPort;    Rect                qdBounds;    gxRectangle    gxBounds;    GetPort(&oldPort);    SetPort(myWindow);    qdBounds = myWindow->portRect;            // Convert the QuickDraw rectangle into a GX fixed-point rectangle.    GXQDGlobalToFixedLocal((Point *) &qdBounds.top,                                      (gxPoint *) &gxBounds.left);    GXQDGlobalToFixedLocal((Point *) &qdBounds.bottom,                                      (gxPoint *) &gxBounds.right);    *boundingBoxPtr = gxBounds;    SetPort(oldPort);}Now we can create a QuickDraw GX rectangle that represents the portRect of the window. The rectangle will reside in the variable viewRect.GetFixedWindowBounds(theWindow, &viewRect);We need to adjust viewRect for the scroll bars attached to the window. viewRect.right -= ff(kScrollBarWidth - 1);viewRect.bottom -= ff(kScrollBarWidth - 1);Creating and activating the child view port. Now we’re ready to create a child view port that’s attached to the parent view port. We want to create a new view port within the same view group (that is, sharing the same global space) as the window’s view port:gxViewPort    gcontentViewPort;gcontentViewPort =     GXNewViewPort(GXGetViewPortViewGroup(windowParentViewPort));The gcontentViewPort variable now contains a valid view port that we can work with. Now we’re ready to set the clip shape of this view port. The clip shape can be any geometry-based shape like a rectangle, a polygon, or a path. The clip shape for gcontentViewPort will simply be defined by the rectangle contained in viewRect, which is the portRect of the window, minus the scroll bar areas. After we set the clip shape, we dispose of the shape because it’s no longer needed, thereby freeing up space within the QuickDraw GX heap:gxRectangle contentViewPortShape;contentViewPortShape = GXNewRectangle(&viewRect);GXSetViewPortClip(gcontentViewPort, contentViewPortShape);GXDisposeShape(contentViewPortShape);Next, we need to set the mapping of gcontentViewPort to be the default mapping and attach gcontentViewPort to the parent view port:GXSetViewPortMapping(gcontentViewPort, nil);GXSetViewPortParent(gcontentViewPort, windowParentViewPort);Now we need to tell QuickDraw GX which view port we want the shapes to be drawn in. We could have all shapes drawn to both view ports, but that wouldn’t be especially efficient. So we make the following call, which tells QuickDraw GX to draw all the shapes we make from now on in gcontentViewPort:SetDefaultViewPort(gcontentViewPort);ZOOMING AND RESIZING THE CHILD VIEW PORTAnytime the user zooms or resizes the window, we must update the clip shape of the child view port we attached to the window’s parent view port. To do this, we get the portRect of the window in a fixed-point rectangle, adjust it for the scroll bars, create a new clip shape from this rectangle, and reset the clip shape of the view port to this new clip shape. The following routine does the work:void ResetContentViewPortClip(WindowPtr theWindow){    gxRectangle    viewRect;    gxShape            contentViewPortClipShape;    // Get the window's portRect into the fixed-point viewRect.    GetFixedWindowBounds(theWindow, &viewRect);    // Adjust the viewRect to accommodate the scroll bars.    viewRect.right -= ff(kScrollBarWidth - 1);    viewRect.bottom -= ff(kScrollBarWidth - 1);    // Create and set the new clip shape.    contentViewPortClipShape = GXNewRectangle(&viewRect);    GXSetViewPortClip(gcontentViewPort, contentViewPortClipShape);    GXDisposeShape(contentViewPortClipShape);}SCROLLING THE CHILD VIEW PORT’S CONTENTSWhen the user scrolls in the window, we need to reset the mapping of the child view port before we call ScrollRect to scroll the bits in the window. That will ensure that when we redraw the contents of the window on the next update event, all the shapes will be located in the correct window-relative position. Otherwise they would be redrawn in their old position, because the geometry of the shapes — which includes their position in the view port — doesn’t change.This remapping approach gives us an advantage at print time. If we didn’t adjust the mapping of the child view port, we would need to adjust the mapping of each shape. While it’s possible to do that, we would have to do it again at print time to ensure that the shapes printed on the right page. If the page contained a lot of shapes, that could be a very time-consuming operation.To update the mapping of gcontentViewPort (the child view port) to reflect the scrolling of the window, we get its current mapping, adjust it to translate the view port by the scroll amount, and set the mapping to the changed one. gxMapping            viewPortMapping;GXGetViewPortMapping(gcontentViewPort, &viewPortMapping);GXMoveMapping(&viewPortMapping, ff(hScroll), ff(vScroll));GXSetViewPortMapping(gcontentViewPort, &viewPortMapping);CREATING, MANIPULATING, AND DRAWING QUICKDRAW GX SHAPESAt this point, you’ve learned how to initialize QuickDraw GX and deal with view ports. It’s finally time to talk about creating, manipulating, and drawing shapes.A shape contains all the information required to draw it. To create a shape with QuickDraw GX, you simply define its geometry. Then you can draw it by calling GXDrawShape(myShape). If you haven’t specified otherwise, your shape will use the default style, transform, and ink supplied by QuickDraw GX for the particular type of shape. When you change a shape’s style, transform, or ink, QuickDraw GX copies a reference to the new style, transform, or ink into your shape.To illustrate the process of creating, manipulating, and drawing shapes, in our QuickDraw GX shell we’ll create a typographic shape containing text. We’ll outline the text in some color and fill the inside of each letter with a pattern composed of stars. Then we’ll create a typographic shape containing a line layout of some text, which we’ll render in a combination of different fonts and scripts.In the QuickDraw GX shell we’ll use a picture, which we’ll store in the global variable gthePage, to collect all the shapes we draw to the window. Using a picture enables us to make just one call to GXDrawShape to draw the contents of the window. We also need to set the gxUniqueItemsShape shape attribute so that each time we add a shape to the picture, QuickDraw GX will make a copy of the shape and add the copy, rather than just adding a reference to the shape. These calls create our picture and set the shape attribute:gxShape    gthePagegthePage = GXNewShape(gxPictureType);GXSetShapeAttributes(gthePage, gxUniqueItemsShape);The variable gthePage now holds an empty picture, ready to have shapes added to it.EXAMPLE 1: A SHAPE CONTAINING TEXTFirst we’ll create a shape containing text, which we’ll store in the variable tempTextShape. We want the text to read “GX.” We set the text shape’s position, create the new shape, set the text size, and set the font to New York:gxPoint        textPosition = {ff(10), ff(205)};gxShape        tempTextShape;tempTextShape = GXNewText (2, (unsigned char *) "GX", &textPosition);GXSetShapeTextSize(tempTextShape, ff(250));// This next call comes from the Font Library.SetShapeCommonFont(tempTextShape, newyorkFont);The variable tempTextShape now holds the text shape.Outlining the text. We said that we want to outline the text with some color and fill the text shape with stars. The approach we’ll take to outlining our text shape is to first convert it into a path shape, which requires only the GXSetShapeType call.After the conversion to a path shape, each character in the text shape becomes a path. Thus, the converted shape will contain two different paths, one for each character. To draw the outline of each path, we set the fill type to gxClosedFrameFill. Then we set the pen to draw on the outside of each contour, set the pen thickness, set the color of our path to a color from the common color library, and scale it 125% on the x-axis and 65% on the y-axis so that it will come out looking short and fat.GXSetShapeType(tempTextShape, gxPathType);GXSetShapeFill(tempTextShape, gxClosedFrameFill);GXSetShapeStyleAttributes(tempTextShape, gxOutsideFrameStyle);GXSetShapePen(tempTextShape, ff(3));SetShapeCommonColor(tempTextShape, blue);GXScaleShape(tempTextShape, fl(1.25), fl(0.65), 0, 0);Now we add our path shape to the picture we’ve stored in gthePage:GXSetPictureParts(gthePage, 0, 0, 1, &tempTextShape, nil, nil, nil);From now on, whenever we draw gthePage, our path shape stored in tempTextShape will be drawn as well. (See Figure 4.)Filling with stars. To fill our shape with stars, we start by changing the fill type and color of our path. Then we define the star shape and the pattern record that will replace the style of our shape, add our new patterned path to our picture, and dispose of all the unneeded shapes.We need to change the fill type of tempTextShape to solid fill because at this point we want to fill the contents rather than draw the outline of each path. We also want our stars to be gray, so we need to reset the color.Figure 4The Path Shape Outlining Our TextGXSetShapeFill(tempTextShape, gxSolidFill);SetShapeCommonColor(tempTextShape, cold_grey);We define the star as a polygon shape containing one contour and five points, with the default fill of evenOdd (which results in a star with a hollow pentagon inside), and we scale it by 15% to make it tiny:gxShape    starShape;long     starGeometry[] = {1,     // One contour.                                     5,    // Five points defining the polygon.                                      ff(60), 0, ff(90), ff(90), 0, ff(30),                                     ff(120), ff(30), 0, ff(90)}; starShape = GXNewPolygons((gxPolygons *) starGeometry);GXScaleShape(starShape, fl(0.15), fl(0.15), 0, 0);The pattern record contains the shape to be used as the pattern, two vectors (u and v) that describe how to tile the pattern, and the pattern attribute. (See Figure 5.) We’ll attach this record to the style of our path shape, replacing the default style. Figure 5Making the Star PatternThe bounding box of our star shape will be a fixed-point rectangle contained in the variable starShapeBounds. This information is used to define the u and v vectors of our pattern record. gxRectangle         starShapeBounds;GXGetShapeBounds(starShape, 0L, &starShapeBounds);We define u and v to place the stars side by side without overlapping:gxPatternRecord        starPattern;starPattern.u.x = 0;starPattern.u.y = starShapeBounds.bottom;starPattern.v.x = starShapeBounds.right + fix1;starPattern.v.y = 0;We set the attributes of the pattern record to gxNoAttributes and then add our star polygon shape to the pattern record:starPattern.attributes = gxNoAttributes;starPattern.pattern = starShape;Finally, we add the starPattern to tempTextShape. QuickDraw GX copies a new style to the converted tempTextShape with the pattern record, replacing the default style currently referenced by tempTextShape. Anytime this shape is drawn, it will be drawn patterned with stars. We add our updated tempTextShape to the picture stored in the variable gthePage:GXSetShapePattern(tempTextShape, &starPattern);GXSetPictureParts(gthePage, 0, 0, 1, &tempTextShape, nil, nil, nil);Now we can dispose of our star polygon shape because it’s contained in our pattern record, which has been encapsulated into the style of our shape. We also dispose of tempTextShape because there’s now a unique reference to it in our picture.GXDisposeShape(starShape);GXDisposeShape(tempTextShape);The results. Our picture, gthePage, now contains two shapes. The first shape is a colored path that outlines the text “GX.” The second shape is the same path filled with gray stars. When we call GXDrawShape(gthePage), all the shapes contained in our picture are drawn. The results are shown in Figure 6.Figure 6Our Text Outlined With Color and Filled With StarsEXAMPLE 2: A SHAPE CONTAINING A LINE LAYOUTIn a text shape, all the text can be rendered in only one font and size. In a layout shape, on the other hand, the text can be rendered in a combination of different fonts and sizes by applying multiple style runs. A layout shape can contain as many style runs as you like. A style controls the font, the size, the script (such as Roman or Arabic), run features (which pertain to swashes, ligatures, and final forms available with the specified font), justification overrides, and kerning adjustments. To illustrate QuickDraw GX’s line layout features, we’ll create a layout shape containing the text “Catch the Nasty WAVE, Dude.” We’ll start by creating the styles to be applied in three different style runs, and then we’ll define the layout shape. Finally, we’ll make the whole line of text slant backward, to demonstrate that you can perform any graphical operation on typographic shapes in QuickDraw GX. Creating the styles. We’re going to apply styles to our layout shape in three different runs. The first run of text, “Catch the Nasty,” will use the Hoefler Italic font; the second run, “WAVE,” will use the Times Roman font; and the third run, “Dude,” will use Hoefler Italic again. In the first and third runs, we’ll enable a total of three of the run features available with Hoefler Italic. But before we create the styles, we need to initialize the run controls used to regulate the run features. We specify the number of run features and styles we’ll use.gxRunControls        runControls;gxRunFeature        runFeatures[3];gxStyle                styles[3];InitializeRunControls(&runControls);Here’s how we specify the style used for our first text run:styles[0] = NewLayoutStyle((char *)"\pHoefler Italic", ff(36), 0,                                     &runControls, nil, 0, nil);We want to enable two run features in our first text run: an “as” ligature in “Nasty” and swashes on the “C” and “N.”runFeatures[0].featureType = gxLigatureType;runFeatures[0].featureSelector = gxLigatureRareOnSelector;runFeatures[1].featureType = gxAlternateDesignsType;runFeatures[1].featureSelector = gxAlternateDesignsChanceryOnSelector;Now we add the two run features to the style used by this run of text:GXSetStyleRunFeatures(styles[0], 2, runFeatures);We create the styles for the second and third text runs:styles[1] = NewLayoutStyle((char *)"\pTimes Roman", ff(38), 0,                                     &runControls, nil, 0, nil);styles[2] = NewLayoutStyle((char *)"\pHoefler Italic", ff(40), 0,                                     &runControls, nil, 0, nil);The run feature used by the last run of text will enable the final form of the “e” in “Dude” and will update the style:runFeatures[2].featureType = gxSmartSwashType;runFeatures[2].featureSelector = gxSmartSwashLineFinalsOnSelector;GXSetStyleRunFeatures(styles[2], 3, runFeatures);We’ll also get the swash on “D” in “Dude” because we enabled the swash capabilities in the second run feature. When we call GXSetStyleRunFeatures, we tell QuickDraw GX line layout to use all three entries in the array.Defining the layout shape. We need to define the length of our layout (in bytes) and initialize the lengths array used to tell QuickDraw GX line layout the length of each run of text:short    totalLengthOfLayout, lengthsArray[3];lengthsArray[0] = 15; lengthsArray[1] = 6; lengthsArray[2] = 5;totalLengthOfLayout = 26;We now have all the information required to define our layout shape and add it to our picture stored in the variable gthePage. Our layout shape will contain three runs of text using three different styles. Each style will use a different text size. Two different fonts will be used, and three run features will be enabled. The definition looks like this:char         *sampleText = "Catch the Nasty WAVE, Dude";gxPoint     layoutPosition = {ff(10), ff(65)};    tempLayoutShape =                     GXNewLayout(1, &totalLengthOfLayout, (void *) &sampleText,                                    3, lengthsArray, styles,                                    0, nil, nil, nil, &layoutPosition);GXSetPictureParts(gthePage, 0, 0, 1, &tempLayoutShape, nil, nil, nil);We draw tempLayoutShape by calling GXDrawShape(tempLayoutShape). The result is shown in Figure 7. Note that “WAVE” has been kerned automatically.Figure 7Our Line Layout ShapeSkewing the shape and cleaning up. Because QuickDraw GX treats all typographic shapes as graphics, we can perform any graphical operation on our layout shape, now stored in tempLayoutShape. We’ll skew it by 125% in the x direction about its origin, move the shape 15 pixels in the x direction to put it back into the window after the skew, and move it 75 pixels in the y direction to move it away from the beginning position. Finally, we’ll add the shape to our picture stored in the variable gthePage. When drawn, it will look like Figure 8.GXSkewShape(tempLayoutShape, fl(1.25), 0, shapePosition.x,                shapePosition.y);GXMoveShape(tempLayoutShape, ff(15), ff(75));GXSetPictureParts(gthePage, 0, 0, 1, &tempLayoutShape, nil, nil, nil);Figure 8Our Line Layout Shape, SkewedWe no longer need tempLayoutShape because it’s now part of our picture, so we can dispose of tempLayoutShape and our array of styles:short    loop;GXDisposeShape(tempLayoutShape);for (loop = 0; loop <= 2; loop++)     GXDisposeStyle(styles[loop]);Now gthePage contains three shapes. The first shape is a colored path that outlines the text “GX,” the second shape is the same path filled with stars, and the third shape is a typographically cool and skewed rendition of “Catch the Nasty WAVE, Dude.” When we call GXDrawShape(gthePage), all these shapes are drawn. In the QuickDraw GX shell, gthePage is set up in the CreateThePageOfGXShapes function.BASIC PRINTING IN QUICKDRAW GXQuickDraw GX adds quite a few new printing features, as mentioned earlier in this article. We’ll briefly explore printing here by discussing methods for printing shapes, how to initialize QuickDraw GX printing, how to handle printing errors, how to implement three new print items added to the File menu, and how to finish up printing.METHODS FOR PRINTING SHAPESThree approaches to printing shapes are available to your application: you can send shapes to QuickDraw GX printing one by one, you can send a picture that contains all the shapes used to represent a page, or you can send a picture that contains other pictures.Depending on your application, sending an entire picture full of information may be simplest, but if the picture contains quite a few shapes, say 20,000 to 25,000, you might suffer a performance penalty. On the other hand, sending shapes one by one is more complicated for some applications, but it may be the most efficient in terms of performance when you have lots of shapes — more than 20,000. If you have lots of shapes in one big picture but you don’t want to send them one by one, you should consider breaking the big picture into smaller pictures. (Recall that a QuickDraw GX picture is a shape that can contain other pictures.) This approach would enable you to group similar items in the same way as in MacDraw®.You need to decide which method works best for your application. In the case of our shell, we’ll send a picture for each page of our document (which conveniently consists of only one page).INITIALIZING QUICKDRAW GX PRINTINGTo initialize QuickDraw GX printing, we call InitPrinting after we create the graphics client. We then create a job, which is an extensible data structure containing all the information required to print a document. For example, a job specifies the formatting printer driver, the printer for which the job has been targeted, when the document should be printed, and the number of pages in the document.OSErr        myQDGXPrintError;gxJob        gDocumentJob;myQDGXPrintError = GXInitPrinting();if (myQDGXPrintError == noErr)     myQDGXPrintError = GXNewJob(&gDocumentJob);else    // Your error-handling code here!HANDLING PRINTING ERRORSQuickDraw GX printing handles printing errors differently from the Printing Manager. The Printing Manager requires you to check for an error after each call. If you receive an error, you must match all your open calls with the appropriate close calls, close up the Printing Manager, and report the error to the user. In QuickDraw GX printing, printing errors are local to the job. This gives you the ability to poll for errors after a group of routines, making your code smaller and cleaner. If you do receive an error within a group of routines, the routine that caused the error will prevent the remaining calls from executing until the error is cleared by calling GXGetJobError. You can then alert the user to the problem. All the QuickDraw GX printing errors are listed in PrintingErrors.h. IMPLEMENTING THE NEW MENU ITEMSYour application should implement three new items in the File menu: Print One Copy, Document Setup, and By Page Setup. •    Print One Copy should print one copy of the document without presenting the user with any dialog other than a status dialog. •    Document Setup should present a dialog that lets the user format the entire document, similar to the old Page Setup dialog. •    By Page Setup should present a dialog that enables page-by-page formatting of a document (for instance, the user should be able to choose a different page size for each page in the document).We won’t take the space to reprint the code to implement Document Setup or By Page Setup here; check it out in our QuickDraw GX shell.When the user chooses Print One Copy from the File menu, we want to print the application’s document. In our QuickDraw GX shell, that means printing the contents of gthePage:OSErr DoPrintOneCopy(WindowPtr window){    Str255        windowTitle;    OSErr        printError;    if (window)     {        GetWTitle(window, windowTitle);        // Start sending the job. The job has the same name as our window,        // and it contains one page. The name appears in the status dialog.        GXStartJob(gDocumentJob, windowTitle, 1);        // Send the entire page down to the printer. (All the shapes that         // are being printed have been collected into gthePage.)         GXPrintPage(gDocumentJob, 1, GXGetJobFormat(gDocumentJob, 1),                         gthePage);        // This call tells QuickDraw GX printing we've finished sending the        // job, so terminate the transmission (that is, the connection to        // the printer).        GXFinishJob(gDocumentJob);        if (GXGetJobError(gDocumentJob) != noErr)            // Your error-handling code here!    }}FINISHING UPOnce we’ve finished printing, we leave the printing system open. This isn’t a problem, because the QuickDraw GX printing system has a very small memory requirement when not in use — approximately 35K. The main reason we leave it open is that we want to keep the job around, ready to be used the next time the user prints. If we were to close the printing system, we would need to recreate the job. CLOSING UP THE QUICKDRAW GX WORLDClosing up the QuickDraw GX world is as straightforward as initializing it. You should dispose of all the QuickDraw GX objects you created while your application was running. For example, if you called the GXNewShape routine to create a shape, you should call the GXDisposeShape routine to dispose of it.In our QuickDraw GX shell’s shutdown, we need to dispose of the QuickDraw GX picture we created to contain all the shapes drawn to our window, the common color library, our window, and the graphics client. To dispose of the picture we created, we first test to make sure it contains something. If it does, we call GXDisposeShape on it:if (gthePage != nil)    GXDisposeShape(gthePage); The QuickDraw GX shell has also been using the common color library, which we dispose of by callingDisposeCommonColors();Now we can dispose of the window; this also disposes of the view ports. In our shell, we created our own pointer to the window record, so we need to dispose of it with the appropriate call.To close up the QuickDraw GX printing system, we dispose of the job and then call GXExitPrinting before we dispose of the graphics client. If we were going to save our picture to disk, we would want to flatten the job to disk as well.if (GXDisposeJob(gDocumentJob))    // Your error-handling code here!if (GXExitPrinting())    // Your error-handling code here!Finally, we need to call GXDisposeGraphicsClient to dispose of the graphics client we created earlier:GXDisposeGraphicsClient(gGraphicsClient);If for some reason you haven’t yet disposed of all the QuickDraw GX objects you’ve created while your application has been running, GXDisposeGraphicsClient disposes of them. If you enabled graphics notices earlier in your application, you’ll receive a graphics notice for the first QuickDraw GX object you didn’t dispose of. For example, if you didn’t dispose of a shape, you’ll receive this notice:GRAPHICS NOTICE: shape not disposedThis isn’t a problem when you’re shutting down your application, because the QuickDraw GX heap is cleaned up when GXDisposeGraphicsClient is called. But getting a notice like this when your application ends means that you’ve been leaving unused items in the QuickDraw GX heap. That could mean reduced performance, since the QuickDraw GX Memory Manager has to page these unused objects into and out of the heap in a low-memory situation.If you do receive a graphics notice about something you didn’t dispose of, you should track down the object to improve your runtime memory management. Prevent your application from calling GXDisposeGraphicsClient so that the QuickDraw GX heap doesn’t disappear before you can analyze it. In GraphicsBug, use the Heap menu to choose your application’s heap; then type “hd” to get a dump of your QuickDraw GX heap, or “hd shape” to get a list of all the shapes you forgot to throw away.In our QuickDraw GX shell, the routine ShutDownProgram closes up the QuickDraw GX world.WHERE TO GO FROM HEREWe’ve taken a look at what you need to do to begin making use of the new QuickDraw GX technology. Now you’re ready to tackle that huge pile of QuickDraw GX material. I suggest starting with the sample code that comes with QuickDraw GX. There are sample applications ranging from very simple to relatively complex, and some tools to play with. Try out the samples that interest you. For an illustration of the minimum number of lines of code needed to draw GX shapes, take a look at the “One Rectangle” sample. It initializes the QuickDraw GX world, attaches a view port to a window, creates a rectangle, and draws the shape to the window.Then take a look at the QuickDraw GX documentation. You should start with the “QuickDraw GX Objects” chapter, which describes all the objects illustrated in Figure 2. From there, proceed to the parts of the documentation that make the most sense for your application. I hope you’ve enjoyed this overview of QuickDraw GX. We haven’t covered all the exciting parts of the technology, by any means. This is only the beginning!DEVELOPING QUICKDRAW GXPRINTING EXTENSIONSSAM WEISSWith QuickDraw GX comes a new extensible printing architecture that simply invites you to jump in and tinker. Writing printer drivers has never been easier. But with the advent of printing extensions, you may never have to write a printer driver again! This article tells you what you need to know to create QuickDraw GX printing extensions.Macintosh system software has long provided hooks that enable developers to add system-level features in the form of INITs (now called system extensions) and cdevs (control panels). QuickDraw GX extends the extension concept to printing via printing extensions, plug-in software modules whose sole purpose in life is to modify the behavior of printing. Want to stamp the word “Confidential” on every page printed to a specific printer? Write a printing extension. Want to drive a sheet feeder attachment to a LaserWriter? Write a printing extension. Chances are that if there’s something you want to do that the QuickDraw GX printing architecture doesn’t already do, you can do it with a printing extension.In this article, I’ll describe the steps you must take to create a QuickDraw GX printing extension. By the end of the article we’ll have a working, environmentally friendly extension called 4-Up. As shown in Figure 1, the 4-Up printing extension maps four document pages onto one physical page at print time, saving countless trees in the process!Notice that I referred to a printing extension as a “software module.” I would love to use the currently hip term “component,” but I don’t want to confuse the issue by implying that printing extensions are implemented as Component Manager components. In fact, printing extensions are a whole new sort of beast. QuickDraw GX includes a new low-level software manager called the Message Manager, which it uses to implement its extensible printing architecture. A printing extension is a client of the Message Manager called a message handler. The Message Manager manages the construction of a hierarchy of related message handlers into a message class, allows message objects to be instantiated from message classes, and directs messages among message handlers. I won’t be going into too much detail about the Message Manager Figure 14-Up at Workin this article. But there are times when you’ll have to call the Message Manager directly from your printing extension, so you need to be aware of it.Another new manager included in QuickDraw GX is the Collection Manager, which manages the creation of lightweight extensible data structures called collections. QuickDraw GX printing makes heavy use of collections. Although we won’t need to call the Collection Manager from the 4-Up extension, nearly all serious printing extensions will need to do so.THE QUICKDRAW GX PRINTING ARCHITECTUREBefore we jump into the technical details of writing a printing extension, it will be helpful to have a general overview of the QuickDraw GX printing process. First, I’ll describe how the printing process occurs in several distinct phases, each responsible for a specific subtask of the entire process. Then, I’ll explain the flow of control under QuickDraw GX printing, as contrasted with that of the Printing Manager. And finally, I’ll discuss how printing extensions fit into the picture.THE FOUR SEASONS OF PRINTINGUnder QuickDraw GX, printing occurs in four distinct phases: •    Spooling, which takes place in the foreground under the control of the printing application, results in a device-independent print file being stored to disk. This print file is also known as a portable digital document or PDD, and it can be viewed using the version of TeachText included with QuickDraw GX. Because the contents of the print file are stored in a device-independent format, it can be redirected to a device other than the original target, potentially even a different class of device, for actual printing. For example, a print file originally targeted for a PostScript LaserWriter can be redirected to an ImageWriter. The print file contains enough information to allow the document to be rendered to the best of the printer’s ability, regardless of the originally intended target printer.•    Despooling, which always occurs in the background under the control of the PrinterShare GX background printing task, is the process of reading pages from the print file for imaging. Despooling need not occur on the same machine on which spooling occurred. PrinterShare GX sends print files over the network when the target device is a remote server. Also, users may copy print files to floppy disk, or otherwise manually move them to other machines for printing.•    Imaging also occurs in the background under the control of PrinterShare GX. Despooling and imaging always happen together, but it’s useful to consider them as distinct phases since they accomplish different tasks. While the despooling process is responsible for reading the correct pages from the print file, the imaging process is responsible for translating the device-independent graphics data contained in the file into a format recognized by the target device. This would be PostScript code in the case of a PostScript LaserWriter, and it would be device-resolution bitmaps and appropriate escape sequences in the case of an ImageWriter.•    Device communications encompasses the actual dialog that occurs between the printer driver and the target device. This is a distinct phase, as it may actually take place on a machine other than that on which imaging occurred. For example, if the target device is a remote server, and PrinterShare GX determines that certain necessary resources (such as fonts) aren’t available on the server, PrinterShare GX may opt to image the job locally into an image file, which it sends to the server. By definition, image files are device-dependent, nonviewable, and nonredirectable. The image file is “played back” on the server during the device communications phase.GO WITH THE FLOWAt the highest level, the flow of control under QuickDraw GX printing remains similar to that in the existing Printing Manager. There are three major players: the application, the printing API, and the printer driver. The printing application calls a layer of printing API routines, each of which either performs some task or calls the appropriate printer driver to perform some task. However, there are two major differences in QuickDraw GX printing. First, the printing API has been greatly expanded. And second, the way in which control is transferred from the API to the driver is completely different. I won’t be going into detail about the expanded printing API — but you’ll need to understand the new flow of control in order to write printing extensions.The existing Printing Manager calls the driver simply by loading the appropriate PDEF (code resource) from the driver, computing the offset to the specified routine, and jumping to it. As shown in Figure 2, QuickDraw GX printing uses an intermediary, the Message Manager, to transfer control to the driver. When the application makes a QuickDraw GX printing call, and the printing API needs to call the driver, it does so by calling the Message Manager to request that a message be sent to the driver. The advantage of this approach is flexibility. The Message Manager allows message handlers to be inserted between the printing API and the driver (which is itself a message handler). Aha! The light goes on! This gives us the ability to extend the behavior of printing, or even fix bugs, without modifying the driver’s code. It also serves as the foundation upon which the printing extension mechanism is built.DON’T SHOOT THE MESSENGERQuickDraw GX printing defines over a hundred messages. When an application calls the printing API, QuickDraw GX either performs the requested task itself or sends one of these messages (via the Message Manager) to the driver to perform the task. For many tasks, QuickDraw GX provides a default implementation for the associated message, but sends a message to the driver anyway. This gives the driver a chance to do things its own way, or to massage the message parameters before forwarding the message on to the default implementation.This is where printing extensions come in; they’re inserted between the printing API and the driver, thereby having the opportunity to override any message before it gets to the driver. There are two flavors of message overriding, partial and complete. In a partial message override, the extension will do some work to customize the behavior of the message, but it will still forward the message to the driver. The extension may do its work before forwarding the message (preprocessing), after forwarding the message (post-processing), or both before and after forwarding the message. For example, message preprocessing might involve changing one or more of the message parameters before the driver sees them. Post-processing might involve modifying result parameters returned by the driver.Figure 2The Old Way Versus the QuickDraw GX WayIn a complete message override, the extension is responsible for implementing the message entirely and does not forward the message to the driver. Since any number of extensions may be inserted between the printing API and the driver, complete overrides will also inhibit any other extensions inserted between the driver and the extension performing the override from receiving the message. So before completely overriding a message, think hard and be sure to consult the documentation (Inside Macintosh: Printing Extensions and Printer Drivers, available from Addison-Wesley in September), which gives details regarding which messages are appropriate candidates for complete overrides.Any message not explicitly overridden by the extension is implicitly forwarded by the Message Manager to the driver — or if there is another extension loaded before the driver, it will get the next crack at the message.LESS IS MORENow that you have some background on the behind-the-scenes operations of QuickDraw GX printing, we can investigate what it takes to cram four pages into one. The first step is deciding which messages to override. With over a hundred messages to choose from, this may well be the most difficult aspect of printing extension development. If you’ve ever worked with a large class library like MacApp, you know what I mean. Half the battle is understanding the context within which various messages are sent. QuickDraw GX printing is no different; in fact, you can envision it as a printing class library. As in MacApp, it takes some time to learn your way around.In our case, there are at least four different messages we could override in order to stuff four pages into one: GXSpoolPage, GXDespoolPage, GXImagePage, and GXRenderPage. The one we choose will depend on the desired effect. I chose the GXDespoolPage message, which is sent by QuickDraw GX to read each page from the print file during background printing. QuickDraw GX printing always spools data to a device-independent print file and then releases control back to the foreground application. PrinterShare GX, a background printing process, despools the print file, images it, and sends the result to the target printer. By overriding the GXDespoolPage message, we have no effect on the print file itself and we don’t affect spooling performance. Our modifications will be done on the fly during the background despooling/imaging phase of printing. One implication of this strategy is that our extension won’t affect what the user sees when viewing the print file on the screen (soft copy); it will affect only what’s actually printed (hard copy).During the background despooling/imaging phase of printing, QuickDraw GX sends the GXDespoolPage message for each page in the print file. QuickDraw GX supplies a default implementation for this message which reads the requested page from the print file and returns it to the caller as a picture shape. The 4-Up extension simply needs to override the GXDespoolPage message and return a picture shape containing the requested page plus the three succeeding pages. Of course, we’ll need to scale down the original pages and move them around on the physical page a little. But that’s the basic idea.OK, it sounds great in theory. But we have a problem. Suppose the print file contains 16 pages. We’re effectively creating a 4-page document. But QuickDraw GX is going to send the GXDespoolPage message 16 times and expect a valid picture shape to be returned each time. What happens when we run out of pages, after we’re called for the fourth time? As you’ve probably guessed, there’s another message we must override called GXCountPages. This message is sent at the beginning of the imaging process to determine how many times the GXDespoolPage message should be sent. In the example given above, we would need to override GXCountPages to return 4 instead of 16.WRITING THE CODENow that we know which messages to override, we can write some code. Writing the code for a printing extension consists of implementing message overrides. In the 4-Up extension, we’ll override two messages, GXCountPages and GXDespoolPage. Coding a message override is fairly straightforward, similar to coding a callback routine for other Toolbox managers. The most important part is ensuring that we declare the function with the expected calling interface.OVERRIDING GXCOUNTPAGESThe GXCountPages message has the following interface:OSErr GXCountPages (gxSpoolFile thePrintFile, long* numPages);In fact, all messages share certain common interface elements. For example, all messages must return a result of type OSErr. This is important because all printing code is segmented. If the segment dispatcher fails to load your extension’s code segment, it must be able to report the error condition to the caller. If your particular override doesn’t do anything that can fail, simply return noErr.Now that we know the interface to the GXCountPages message, we can implement our override. Since we’re squeezing four pages into one, we can determine the number of actual pages with the following simple formula:physicalPages = (originalPages + 3) / 4Trick #1. Determining the value of originalPages is one of two tricky things we need to do in this extension. Your first thought might be to retrieve the document’s page count from the current job, which is an implicit parameter to every message. The current job is an abstract object of type gxJob, which you can think of as a replacement for the print record in the existing Printing Manager. It contains all sorts of information relating to the document being printed. We can get a reference to the current job by calling GXGetJob, a QuickDraw GX printing routine, and then access information such as the document’s page count from the job.Although this technique would work for simple cases, it won’t work if another printing extension is present and also modifying the result returned by the GXCountPages message. Consider the case where the user is running our 4-Up extension and another 2-Up extension. Ideally, the result should be an 8-to-1 mapping; both extensions would do their work, each oblivious to the other’s existence, yet the final output would be the result of a cooperative effort!The correct technique is to forward the GXCountPages message to the next message handler, and use the result we get back as the value for originalPages. Note that the value we get may actually be the result of modifications made by other extensions, but we don’t care! That’s the beauty and flexibility inherent in the messaging architecture. Forwarding the GXCountPages message is as easy as calling the predefined routine Forward_GXCountPages. Here’s the full implementation of our GXCountPages override:OSErr FourUpCountPages (gxSpoolFile thePrintFile, long* numPages) {    OSErr anErr;    long    originalPages;    anErr = Forward_GXCountPages(thePrintFile, &originalPages);    nrequire (anErr, FailedForward_GXCountPages);    *numPages = (originalPages + 3) / 4;    return noErr;FailedForward_GXCountPages:    return anErr;}Note the use of the nrequire exception-handling macro. It displays an error string and jumps to the FailedForward_GXCountPages label if anErr is nonzero. See the article “Living in an Exceptional World” in develop Issue 11 for more information.OVERRIDING GXDESPOOLPAGEThe meat of the 4-Up extension is contained in the GXDespoolPage override. The GXDespoolPage message has the following interface:OSErr GXDespoolPage (gxSpoolFile thePrintFile, long pageNumber,        gxFormat pageFormat, gxShape *pagePicture, Boolean *formatChanged);Normally, the default implementation of this message will be executed, resulting in the page identified by pageNumber being read from the print file specified by thePrintFile. Additionally, the page’s associated format will be read into pageFormat, and the Boolean formatChanged will be set to true if the format being returned is different from the format returned by the last invocation of the GXDespoolPage message. Formats are abstract objects that contain formatting information for one or more pages in a document. We’ll need to query the page format for its dimensions so that we can properly place our four scaled-down pages onto the physical page.Our GXDespoolPage override must do the following work:1.    Using pageNumber, compute the actual page numbers for the pages we must read. Remember, when QuickDraw GX asks for page 2, we’ll be returning pages 5, 6, 7, and 8. Page numbers start at 1.2.    Read up to four pages from the print file, being careful not to read past the last remaining page.3.    Query the page’s format for its dimensions. We’ll be fairly unsophisticated and ignore all but the first format for each group of four pages. As a result, we won’t handle all cases correctly — for example, mixed portrait and landscape pages. This is left as an exercise for the reader.4.    Scale down and translate each page to the correct size and position.5.    Add the modified pages to a new picture shape, and return it.This may seem like a lot of work. Fortunately, we can rely on the default implementation of GXDespoolPage for much of it. Here’s the code:OSErr FourUpDespoolPage (gxSpoolFile thePrintFile, long pageNumber,                                     gxFormat pageFormat, gxShape* pagePicture,                                     Boolean* formatChanged) {    OSErr    anErr;    long        firstPage, lastPage, numPages, whichPage;    gxShape    fourUpPage, thePages[4];    gxShape* atPage;        /* Determine actual page numbers of the pages to despool. */    lastPage = pageNumber * 4;    firstPage = lastPage - 3;    /* Determine page number for last page in spool file so that we can        constrain our despooling loop to a valid range if fewer than four        pages remain in the file. */    anErr = ForwardMessage(gxCountPages, thePrintFile, &numPages);    nrequire (anErr, FailedForward_GXCountPages);        if (lastPage > numPages)        lastPage = numPages;        /* Create picture shape to hold subpages. */    fourUpPage = GXNewShape(gxPictureType);    anErr = GXGetGraphicsError(nil);    nrequire (anErr, FailedGXNewShape);        /* Despool backwards so that pageFormat ends up containing the format         for the first page in the group. */    atPage = &thePages[lastPage-firstPage];    /* Last page in group */    numPages = 0;            /* Track number of successfully despooled pages */    for (whichPage = lastPage; whichPage >= firstPage; --whichPage) {        anErr = Forward_GXDespoolPage(thePrintFile, whichPage, pageFormat,                                                     atPage--, formatChanged);        nrequire (anErr, FailedForward_GXDespoolPage);        ++numPages;    }        /* Map the despooled pages onto a single physical page. */    {        gxRectangle pageRect;        fixed        tx, ty;        gxMapping    aMapping;                /* Get the dimensions of the physical page. */        GXGetFormatDimensions(pageFormat, &pageRect, nil);                /* Compute x and y translation factors. */        tx = (pageRect.right - pageRect.left) >> 1;        ty = (pageRect.bottom - pageRect.top) >> 1;                /* Initialize the mapping to scale by 50%. */        GXResetMapping(&aMapping);        aMapping.map[0][0] = fixed1/2;        aMapping.map[1][1] = fixed1/2;        /* Map the pages onto the physical page. */        GXMapShape(thePages[0], &aMapping);        if (numPages > 1) {            GXMoveMapping(&aMapping, tx, 0);            GXMapShape(thePages[1], &aMapping);            if (numPages > 2) {                GXMoveMapping(&aMapping, -tx, ty);                GXMapShape(thePages[2], &aMapping);                if (numPages > 3) {                    GXMoveMapping(&aMapping, tx, 0);                    GXMapShape(thePages[3], &aMapping);                }            }        }                /* Place the mapped pages into a single picture. */        GXSetPictureParts(fourUpPage, 1, 0, numPages, thePages, nil, nil,                                      nil);        anErr = GXGetGraphicsError(nil);        nrequire (anErr, FailedGXSetPictureParts);        /* GXSetPictureParts cloned the pages, so we must dispose of our            references to them. */        for (atPage = &thePages[numPages-1]; atPage >= thePages; --atPage)            GXDisposeShape(*atPage);    }        /* Return the 4-up page. */    *pagePicture = fourUpPage;        /* Since we don't know whether the format for "actual page number 5"        is the same as that for "actual page number 1," we always set        formatChanged to true. A more sophisticated extension could do the        right thing here. */    *formatChanged = true;        ncheck (anErr);    return noErr;/*------------------------Exception-handling code------------------------*/FailedGXSetPictureParts:FailedForward_GXDespoolPage:    for (atPage = &thePages[numPages-1]; atPage >= thePages; --atPage)        GXDisposeShape(*atPage);    GXDisposeShape(fourUpPage);FailedGXNewShape:FailedForward_GXCountPages:    return anErr;}Trick #2. This code is pretty easy to follow, but one line demands further explanation. Remember earlier I said that there were two “tricky things” our extension would have to do. The first was correctly determining the number of original pages in the document. The second trick occurs early in the above code, in the lineanErr = ForwardMessage(gxCountPages, thePrintFile, &numPages);We need to know the actual page number for the last page in the document so that we can make sure not to read a nonexistent page. Since the last page’s page number is equal to the number of pages in the document, your first thought might be to send the GXCountPages message. QuickDraw GX supplies the Send_GXCountPages routine to do this, and we would call it like so:anErr = Send_GXCountPages(thePrintFile, &numPages);However, this would not produce the desired result. Since this would invoke our own GXCountPages override, as well as those of all other message handlers that override GXCountPages, the result would be the total number of physical pages actually printed, not the total number of logical pages we must despool.What we really want to do is forward the GXCountPages message. But here’s the potential gotcha! We can’t use QuickDraw GX’s supplied Forward_GXCountPages routine to do it.Here’s why: The Message Manager provides two routines for forwarding a message. The ForwardMessage routine takes a selector, which indicates the message to be forwarded, and zero or more message-specific parameters. ForwardThisMessage takes only the message-specific parameters and assumes you want to forward the current message. The current message is the one corresponding to the override you’re currently executing — that is, the override from which you’re calling ForwardThisMessage. The problem with calling Forward_GXCountPages from within the GXDespoolPage override is that all QuickDraw GX’s Forward_XXX routines are simply inline aliases to ForwardThisMessage, with the message-specific parameters added for type-checking purposes. Since it’s far more common to forward the current message than it is to forward an arbitrary message, QuickDraw GX assumes the common case and provides only the corresponding aliases. Therefore, if we were to call Forward_GXCountPages from within our GXDespoolPage override, we would actually forward the GXDespoolPage message with a bogus parameter list!This doesn’t mean we can’t forward arbitrary messages, but to pull it off we do have to call the Message Manager directly. In the above code, we call ForwardMessage and pass the constant gxCountPages, defined by QuickDraw GX, as the message selector. Warning: You don’t get type checking when you call the Message Manager’s sending and forwarding functions directly, so be careful out there!THE JUMP TABLEThe only code left to write is the jump table for our code segment. As you’ll see in the next section, QuickDraw GX determines which messages an extension overrides and the location of the associated override code from special resources within the extension. Since these resources specify the location of the extension’s overrides in terms of byte offsets from the beginning of a specified code segment, it’s easiest to begin each code segment with a simple assembly language jump table. That way, the extension’s entry points are always well defined, independent of any changes we make to the code in the future. Also, QuickDraw GX requires that each code segment begin with a long word set to 0, and this is easily accomplished from assembly language. Since we’re overriding only two messages, and our code is small, we’ll have just a single segment, with the following jump table:FourUpEntry PROC    EXPORT    DC.L         0        ; long word required by QuickDraw GX            IMPORT     FourUpCountPages     JMP         FourUpCountPages     IMPORT     FourUpDespoolPage    JMP         FourUpDespoolPage    ENDPROC                        ENDPUTTING IT ALL TOGETHERWriting code is great, but it’s useless if it never runs. There are several things we must do if our printing extension is to be recognized, loaded, and executed by QuickDraw GX.BE RESOURCEFULThere are four required resources (besides the code) that must be present in every printing extension. All resources, including your own, should have their sysHeap and purgeable bits set, unless otherwise noted. Except for code resources, which have IDs starting at 0, all resources should have IDs in the range reserved for printing extensions. This range extends from 0x9600 to 0x97FF (-27136 to -26625 decimal). The predefined constant gxPrintingExtensionBaseID (equal to -27136) is provided for your use. All the required resources have predefined constants for their types and IDs. For the actual values, see the appropriate header files.The four required resources give QuickDraw GX the following important information:•    'over' resource: which messages you override and where to find the associated override code•    'eopt' resource: during which phases of printing your extension needs to run, and if and when it modifies the contents of the page•    'load' resource: where in the message handler chain your extension should load, relative to other printing extensions•    'scop' resource: which driver and printer types your extension is compatible withThe remainder of this section gives all the gory details for each of the required resources, including examples.The 'over' resource. The override resource lists the messages you’re overriding and where the associated override code is located. Printing extension code resources always have type 'pext' and should have IDs starting at 0 for maximum performance. Given the above jump table, and the fact that we override only universal printing messages, we have a single override resource that looks like this:#define fourUpCodeSegmentID     0#define gxCountPagesOffset     4    /* first entry follows zero long word */#define gxDespoolPageOffset    8    /* jump table entries are 4 bytes long */resource 'over' (-27136, purgeable, sysHeap) {    {        gxCountPages, fourUpCodeSegmentID, gxCountPagesOffset;        gxDespoolPage, fourUpCodeSegmentID, gxDespoolPageOffset    };};If your extension overrides imaging messages, you’ll need separate override resources for each distinct class of imaging messages you override. For example, PostScript message overrides would go in a separate table, and vector overrides in yet another table. You can choose any ID within the printing extension range for these tables. You let QuickDraw GX know the override resource ID with a mapping resource whose type is the same as the driver type for the imaging messages you’re overriding, and whose ID is equal to gxPrintingExtensionBaseID. There are predefined constants for these values. For example, if your extension overrides the PostScript message gxPostscriptEjectPage, you would have the following two resources:resource 'post' (-27136, purgeable, sysHeap) {    -27135            /* ID of our PostScript 'over' resource */};resource 'over' (-27135, purgeable, sysHeap)    {    {    gxPostscriptEjectPage, postscriptSegmentID, gxPostscriptEjectPageOffset;    };};The 'eopt' resource. The extension optimization resource provides QuickDraw GX with additional information that helps it perform optimally under certain conditions. This resource consists of a bit field containing predefined flags that tell the system when the extension executes, whether it needs to communicate with the device directly, and if and when it makes changes to the page. The 4-Up extension runs during the despooling/imaging phase and changes the page during the GXDespoolPage message. It doesn’t need to communicate with the device. Using the predefined resource template, our 'eopt' resource looks like this:resource 'eopt' (-27136, purgeable, sysHeap) {    gxExecuteDuringImaging, gxDontNeedDeviceStatus,     gxChangePageAtGXDespoolPage, gxDontChangePageAtGXImagePage,     gxDontChangePageAtGXRenderPage};The 'load' resource. The extension load resource tells QuickDraw GX your default loading order preference. The first extension’s message handler is loaded directly above the driver. Subsequent extensions are loaded one above the other. The last extension to be loaded is the first to override a given message, and therefore has the most control. Most extensions should use the predefined constant gxExtensionLoadAnywhere, which indicates that the extension has no loading preference. If you prefer to load first, use the constant gxExtensionLoadFirst; if you prefer to load last, use gxExtensionLoadLast. You should regard this resource as a hint, not as a guarantee. For one thing, several extensions may indicate that they want to load last. Obviously, only one will win. More important, the user can reorder the extensions in any way desired, and that ordering always takes priority over the default ordering. Our 'load' resource looks like this:resource 'load' (-27136, purgeable, sysHeap) {    gxExtensionLoadAnywhere};The 'scop' resource. The extension scope resource tells QuickDraw GX the scope of your extension’s compatibility with the various driver types that are supported by QuickDraw GX. Built-in support exists for raster devices, such as the ImageWriter and LaserWriter SC, vector devices, such as plotters, and PostScript devices. If your extension is PostScript-only, you would specify that in a 'scop' resource. An example of a PostScript-only extension might be one that drives a sheet feeder attachment to a LaserWriter, which understands PostScript commands for selecting bins.You may have up to three separate 'scop' resources. The main 'scop' resource lists the types of drivers that the extension is compatible with. It has an ID of gxPrintingExtensionBaseID. The currently supported types are 'rast', 'post', 'vect', and 'univ', for raster, PostScript, vector, and universal, respectively. For example, an extension compatible with PostScript and vector drivers, but not with raster drivers, would have the following 'scop' resource:resource 'scop' (-27136, purgeable, sysHeap) {    {        'post';    /* compatible with all PostScript devices */        'vect';    /* compatible with all vector devices */    };};The second 'scop' resource has an ID of gxPrintingExtensionBaseID+1 and lists the specific printer types that the extension is compatible with. A printer’s type is defined by the creator type of its resource file. For example, the LaserWriter SC has the creator type 'lwsc'. If your extension isn’t generally compatible with a class of devices but does support a particular device, you should list it here. For example:resource 'scop' (-27135, purgeable, sysHeap) {    {        'lwsc';    /* compatible with LaserWriter SC */    };};The third 'scop' resource has an ID of gxPrintingExtensionBaseID+2 and lists the specific printer types that the extension is not compatible with. If your extension is generally compatible with a class of devices but doesn’t support a particular device, you should list it here. For example:resource 'scop' (-27134, purgeable, sysHeap) {    {        'dpro';    /* incompatible with DraftPro plotter */    };};Taken together, the above three 'scop' resources would indicate that the extension is compatible with all PostScript devices, all vector devices except for the DraftPro plotter, and additionally the LaserWriter SC printer.If your extension is not driver-specific, you can indicate that it has universal scope. 4-Up is one such extension, so we have a single 'scop' resource that looks like this:resource 'scop' (-27136, purgeable, sysHeap) {    {        'univ';    /* universal scope => compatible with all devices */    };};Note that if this 'scop' resource had instead included 'post', 'vect', and 'rast', the extension would indeed be loaded for all three device types. However, should a fourth device type be defined in the future, the extension would not support it. Thus, if your extension truly has universal scope, you should use the 'univ' type rather than enumerating all known device types.BUILDING THE BEASTWe’ve written the code, we’ve added the necessary resources. All that’s left is to build it properly. The two most important things to remember are: •    Link the code so that it’s given the proper resource type ('pext') and ID (zero-based).•    Set the file’s type to 'pext' and the creator type to something unique. This is very important! Your extension’s creator type should not be all lowercase (lowercase types are reserved by Apple) and you should register it with the Developer Support Center (AppleLink DEVSUPPORT) to ensure uniqueness. When QuickDraw GX encounters two printing extensions with the same creator type, it will reject all but the first it finds. Your Link and Rez step will look something like this:Link     -ra =resSysHeap,resPurgeable    ∂            -t 'pext'                            ∂            -c '4-Up'                            ∂            -rt pext=0                            ∂            -sg 4-Up                            ∂            -m FourUpEntry                    ∂            {CObjs}                                ∂            -o "4-Up";        Rez -rd -o "4-Up" 4-Up.r -appendBUT WAIT! THERE’S MORE!There you have it — a completely functional printing extension, with minimal effort. Hopefully, by now you’re brimming with ideas for extensions you can write. The mechanism is extremely powerful, and I’ve barely scratched the surface in this article. Serious extensions will need to override the dialog messages to install panels and gather user settings, call the Collection Manager to satisfy persistent storage needs (that is, save user settings across the spooling/imaging threshold), and call the Message Manager to manage dynamic contexts (global state that persists from one message to the next). Extensions can also customize the Finder’s desktop printer menu, save printer-wide settings in desktop printers, and manage user interface interactions via the built-in alert and status mechanisms. Perhaps a future article will explore these and other topics. For now, you should have enough information to get more than your feet wet!QUICKDRAW GX FOR POSTSCRIPT PROGRAMMERSDANIEL LIPTONWith QuickDraw GX, the Macintosh gets a brand new, powerful, and totally different model for text and graphics. Programmers of graphics and page layout applications accustomed to using custom PostScript code during the printing process will have to learn new techniques for imaging on the Macintosh, but the reward is a robust feature set, an easier API, and consistent output whether to a screen (of any resolution or color depth) or a printer (PostScript, raster, or vector). This article should help those programmers make the transition.QuickDraw, while a powerful imaging model for its time and well suited for interactive graphics on the screen, lacks many features demanded by today’s users. To provide features such as transformation (rotation, skewing, and so on) and Bézier curves (ubiquitous in most modern graphics applications), applications in a QuickDraw world must do much of the work of drawing to the screen themselves. However, when printing to PostScript devices such as the Apple LaserWriter, these applications can offload much of this work to the printer by simply using the PostScript language to draw most, if not all, of their graphics and text. For this reason, many Macintosh application programmers have also become PostScript programmers and know how to get things done with the PostScript language.WHAT IS POSTSCRIPT?Before getting into the details of how to make the transition from the PostScript language to QuickDraw GX, you need to understand the two models. The article “Getting Started With QuickDraw GX” in this issue of develop provides an introduction to QuickDraw GX. For an overview of the features of the PostScript language, read on.The PostScript language is probably best known as a robust graphics model with many capabilities. These capabilities include the ability to fill or frame paths made up of line and cubic Bézier segments, render continuous tone images in both color and grayscale, transform graphics with a matrix, and clip to a path made up of line and cubic Bézier segments. PostScript code can also draw text in a variety of different typefaces and manipulate this text as a graphic.To a limited extent the PostScript language is also a printing model. Certain operators in the PostScript language are related to printing. These include operators for page control (showpage and copypage), for controlling paper selection, and for controlling device-specific features (setpagedevice in PostScript Level 2).In addition, the PostScript language serves as a document interchange format. Since it’s so widely available on so many different platforms and printers, a PostScript file can be treated as a device-independent document interchange. (However, it’s not easily edited except by an expert.) Similarly, it’s also used to export clip art. Encapsulated PostScript (EPS) files are widely used for exporting and importing artwork into documents.But the most important attribute of the PostScript language is that, more than a graphics model, it’s a programming language with most of the constructs of modern high-level languages. The PostScript language is really a wrapper for the PostScript graphics model. The graphics are invoked by operators in the language. This full programmability makes it easy for programmers to extend the PostScript model to meet their needs. If a desired feature isn’t in the PostScript graphics model, it can frequently be programmed in the PostScript language. For example, PostScript Level 1 doesn’t contain patterns, but a PostScript procedure can be written to fill a PostScript path with a pattern. Due to this programmability, it’s possible to emulate directly on PostScript printers many of the QuickDraw GX features that aren’t present in the PostScript graphics model. When QuickDraw GX generates a PostScript stream, it includes a complex set of PostScript procedures to do so.COMPARING QUICKDRAW GX AND POSTSCRIPTThis section compares QuickDraw GX and the PostScript language in terms of their graphics, text-drawing, printing, and programming models.THE GRAPHICS MODELSome differences between the QuickDraw GX and PostScript graphics models include math types, Bézier curves, matrix transformation, and orientation of the y-axis.Math types. Before entering the world of QuickDraw GX programming, a PostScript programmer must understand the basic differences in how numbers are represented by QuickDraw GX and the PostScript language.The PostScript language uses floating-point numbers and QuickDraw GX uses fixed-point numbers. The advantage to floating-point numbers is numeric range; the advantage to fixed-point numbers is speed. With fixed-point numbers, addition and subtraction are no slower than with regular integers. QuickDraw GX uses 16.16 fixed-point numbers (32-bit numbers with the high 16 bits representing the integer portion and the low 16 bits representing the fractional portion). In the PostScript language, color component values are represented by floating-point numbers between 0.0 and 1.0. In QuickDraw GX, color component values are represented by a type called colorValue, which is really a short such that 0x0000 is 0.0 and 0xFFFF is 1.0. QuickDraw GX also uses a type called fract. The fract type is like the fixed type except that only the high two bits are the integer portion and the low 30 bits are the fractional portion. This is generally used for numbers between -1 and 1 where fractional precision is important.Curves. Both QuickDraw GX and the PostScript language support Bézier curves. However, each supports a different kind (see Figure 1). While the PostScript language uses cubics, GX uses quadratics. A cubic Bézier curve segment is defined by four control points: a starting point on the curve, two points off the curve, and an ending point on the curve. A quadratic Bézier curve is defined by three control points: a starting point on the curve, a control point off the curve, and an ending point on the curve.Figure 1Comparing Control Points on Bézier CurvesFigure 2 illustrates two similarly shaped paths. The one on the left is defined by two quadratic segments, requiring five control points. The one on the right is defined by a single cubic segment, requiring four control points. This seems to imply that in drawing similar shapes, more points are required using quadratics than using cubics and that, therefore, quadratics are at a disadvantage. However, to reduce data size, the data structure for a QuickDraw GX path allows implied points. Each point in the QuickDraw GX path has a control bit, indicating whether the point is on or off the curve. If two consecutive points in the path are off the curve, there’s an implied point halfway between the two explicitly specified points. So, as shown in Figure 2, it’s only necessary to supply four points for the quadratic path, as the point between point 2 and point 3 is implicit.Figure 2Control Points for PathsMatrix transformations. Both QuickDraw GX and the PostScript language allow anything to be transformed through a matrix before being drawn. Both use a 3 x 3 transformation matrix. However, in the PostScript language the matrix has implicit constant values in the last column, so there are only six degrees of freedom rather than nine. QuickDraw GX allows you to specify all nine elements of the matrix.To modify the current transformation matrix (CTM) by a given transformation, an application may use the following PostScript code:[ 4.17 0.0 0.0 -4.17 -1280.0 1650.5 ] concatThis code concatenates the following matrix with the CTM in the graphics state:4.17 ,  0.0 ,  0.0 ,  0.0,   -4.17,   0.0,   -1280.0,    1650.5,   1.0 ))QuickDraw GX has a data structure called gxMapping, which is a structure containing one field. The field is a 3 x 3 array. The first two columns contain fixed-point numbers and specify the skewing, scaling, rotation, and translation of the transformation. The third column is made up of fractional numbers (numbers of type fract) and specifies the perspective portion of the transformation. The following code generates a mapping that’s equivalent to the matrix in the PostScript code:/* Declare a mapping structure (fract1 is a constant for 1.0 in   mathtypes.h). */gxMapping        aMapping =   { { fl(4.17), fl(0.0), fl(0.0) }                                     { fl(0.0), -fl(4.17), fl(0.0) }                                     { -fl(1280.0), fl(1650.5),fract1 } };The y-axis. The y-axis orientation differs in the PostScript graphics model and QuickDraw GX. In the PostScript model, the y-axis increases from the bottom of the page or window to the top and in QuickDraw GX, as in QuickDraw, it increases from top to bottom (see Figure 3).Figure 3Coordinate SystemsOBJECT-BASED MODEL VERSUS STREAM-BASED PROTOCOLA fundamental difference between graphics code for QuickDraw GX and PostScript code is that QuickDraw GX is object-based and PostScript code is essentially a stream-based protocol. Although the PostScript language is a programming language, documents usually consist of a set of PostScript procedures followed by a stream that invokes those procedures. Each model has advantages: With a stream-based protocol the graphic content of any given page is virtually infinite. As long as PostScript code is continuously streamed to the printer, it renders into the frame buffer until showpage is issued — which essentially says, “This page is done; start the next one.” With an object model it’s relatively easy to share data between objects. A quick summary of objects in QuickDraw GX illustrates this advantage.QuickDraw GX objects. The shape object is the basic element of the QuickDraw GX graphics model. A shape contains a geometry of any primitive type and points to three other objects that describe how to render that geometry: the ink object, which describes how to apply color to the geometry (as well as transfer mode); the style object, which describes how to affect the geometry before rendering (pattern, dash, and so on); and the transform object, which describes how to map and clip the geometry before rendering. These objects can, in turn, point to other objects. For example, a transform object points to a list of view port objects that describe where to draw the geometry (such as in which window). An ink object points to a color profile object that describes the colors in the ink in a device-independent manner. All the previously described objects could also have lists of tag objects. A tag object is simply a container for any data the application associates with the owning object.Data sharing is extremely easy in this object model. If I have a picture made up of 100 different shapes and 30 of them have the same color, these 30 shapes can all point to the same ink object. The color for these 30 shapes is stored only once. In a stream-based protocol, it’s only convenient to share data between consecutive items in the stream. (You can write PostScript code that shares data between nonconsecutive objects, but it’s not easy.)PostScript procedures and dictionaries versus QuickDraw GX objects. Emulating the object model in PostScript code is possible because it’s a programming language. You could use PostScript dictionaries as containers for shapes and then have a PostScript procedure that draws one of these dictionaries. The following is a simple example of how this could work. (Warning: Serious PostScript code ahead.)/aShape 7 dict def                    % Make a dictionary for the shape.aShape begin                            % Put it on the dictionary stack.    /geometryProcedure {            % Define a procedure for the geometry        newpath                            %  to draw a rectangle.        100 100 moveto        0 100 rlineto                            100 0 rlineto        0 -100 rlineto        closepath    } bind def            % Dictionary entries for transform.    /Transform [ 10 0 0 10 0 0 ] def    % Dictionary entries for the color.    /redComponent 1.0 def    /greenComponent 0.0 def    /blueComponent  1.0 def    /penWidth 5.0 def    /fillType (framed) defend                                        % Dictionary definition.% The following procedure takes a shape dictionary and draws it./DrawShapeDict {    begin                                 % Put the shape dictionary on the stack.    gsave                                 % Shape shouldn't affect graphics state.    Transform concat                     % Apply transform.    redComponent greenComponent blueComponent setrgbcolor    % Set the color.    geometryProcedure                 % Execute the geometry procedure.    fillType (framed) eq {             % If the shape is framed,        penWidth setlinewidth         %  set the pen width and        stroke                             %  stroke the path.    } {                                     % Else, fill the shape.         eofill    } ifelse    grestore    end} bind def% The following would be in the stream to draw the shape stored in the % dictionary.aShape DrawShapeDictYou could use PostScript code in this manner, but most printers have limited memory, and memory management in PostScript printers is difficult (a subject for another article), so it’s usually not done.Graphics state versus shape attributes. In a stream-based graphics model, a graphics state determines how a particular item is drawn. In the PostScript language, the graphics state attributes include the color, pen thickness, transformation matrix, clip, miter limit, end caps, and joins that will be used to fill or stroke the current path, bitmap, or text to be drawn. Applications using PostScript code must efficiently manage the graphics state — you never want to send more information to the printer than necessary, but sending too little is fatal to the fidelity of the graphics. So, an application emitting PostScript code must send the color for the item to be drawn only if it’s different from that of the last item drawn, and do similarly for pen thickness, transformation matrix, and so on.In the QuickDraw GX object-based model, every shape points to all the information necessary to draw itself. An application merely needs to call GXDrawShape to draw the shape properly with the designated color and pen thickness and other designated characteristics. The application no longer has to keep track of the graphics state. However, there’s a different burden (though less cumbersome): making sure shape objects share other objects when possible to reduce the memory used by the picture.The following code samples effectively illustrate the difference between the two models. Each sample draws two rectangles, one red and one blue, and offsets the second one by (100, 100). First, here’s the PostScript code:/DrawRect {100 100 moveto 25 0 rlineto 0 25 rlineto -25 0 rlineto    closepath fill} bind defgsave1.0 0.0 0.0 setrgbcolor             % Set the color red.DrawRect100 100 translate                     % Move the coordinate system by 100,100.0.0 0.0 1.0 setrgbcolor             % Set the color blue.DrawRectgrestoreNow compare the QuickDraw GX code:void GXDraw2Rectangles(){    gxRectangle    aRectangle = { ff(100), ff(100), ff(125), ff(125) };    gxShape            rectShape;    gxInk            redInk, blueInk;    gxColor            aColor;        aColor.space = rgbSpace;                         /* Color will be RGB. */    aColor.profile = nil;                             /* No color profile. */    aColor.element.rgb.red = 0xFFFF;    aColor.element.rgb.green = 0x0000;    aColor.element.rgb.blue = 0x0000;    redInk = NewInk();                                 /* Make red ink. */    GXSetInkColor(redInk, &aColor);    aColor.element.rgb.red = 0x0000;    aColor.element.rgb.green = 0x0000;    aColor.element.rgb.blue = 0xFFFF;    blueInk = NewInk();                                 /* Make blue ink. */    GXSetInkColor(blueInk, &aColor);    rectShape = GXNewRectangle(&aRectangle); /* Create a shape. */    GXSetShapeInk(rectShape, redInk);             /* Use red ink. */    GXDrawShape(rectShape);                         /* Draw it. */        /* Move it over and draw it in blue. */    GXMoveShape(rectShape, ff(100), ff(100));    GXSetShapeInk(rectShape, blueInk);         /* Use blue ink. */    GXDrawShape(rectShape);                         /* Draw it. */    /* Clean up. */    GXDisposeShape(rectShape);    GXDisposeInk(blueInk);    GXDisposeInk(redInk);}The PostScript code uses a procedure to draw the rectangle. The procedure is analogous to the shape object. However, each time the rectangle is drawn, the graphics state must be modified to change the color and the transformation. At the end, the graphics state for subsequently drawn items is blue and the origin is shifted by (100, 100) from the original rectangle. The grestore operator is needed to set the graphics state back to what it was to begin with. The QuickDraw GX code created a shape, made it red, drew it, moved it, made it blue, and drew it again. No global state was affected, only the shape itself. Moving the rectangle with PostScript code necessitated modifying the graphics state’s CTM. With QuickDraw GX code, moving the rectangle involved only translating the shape’s own geometry with the GXMoveShape routine.QuickDraw GX database versus PostScript container. In QuickDraw GX a picture is a type of shape object whose geometry is a list of other shapes. Those shapes in the list can also be picture shapes. Therefore, a QuickDraw GX picture shape is a hierarchical database of shapes. This database can be queried and modified with QuickDraw GX routines such as GXSetPictureParts, which inserts or replaces shapes in a picture shape, and GXGetPictureParts, which retrieves shapes from a picture. Since a picture can have objects that refer to each other, QuickDraw GX must have the whole picture shape available at one time (although not actually in memory, but rather in the disk-based backing store in low-memory conditions).A PostScript file describing a picture is essentially a container for graphics. The file contains all the data needed to draw the picture, but it can’t be readily edited or queried without having an interpreter for the PostScript language built into your application. The PostScript stream-based protocol lets the device draw the stream on the fly.Again, each model has its advantages. The object model is best suited for interactive applications and the stream-based protocol is best suited for printers with limited memory and no disk drives.TEXT-DRAWING MODELSQuickDraw GX contains three different types of shape objects for drawing text: the text type, the glyph type, and the layout type. The text type is the simplest of the three, although it’s not the most primitive form. Drawing a text shape is similar to using the PostScript show operator, as illustrated by the following code samples. First, here’s a PostScript “Hello World” program:/Times-Roman findfont                % Get the font dictionary for Times.24 scalefont                            % Scale it to 24 points.setfont                                    % Make it the current font.100 100 moveto                        % Move to location 100, 100.(Hello World) show                    % Draw the text.Now here’s the QuickDraw GX “Hello World” program:void GXHelloWorld(void){    gxShape             helloShape;    gxFont             aFont;    gxPoint             location = {ff(100), ff(100)};    /* Find the font object for Times. */    aFont = FindPNameFont(fullFontName, "\pTimes Roman");    /* Make a text shape. */    helloShape = NewText(11, "Hello world", &location);    GXSetShapeFont(helloShape, aFont);    GXSetShapeTextSize(helloShape, ff(24));    GXDrawShape(helloShape);    GXDisposeShape(helloShape);}You can use these examples to help you get started with drawing text in QuickDraw GX. They also show some similarities between the PostScript model and the QuickDraw GX model. Both have font entities: in PostScript code it’s a dictionary and in QuickDraw GX code it’s an object. In PostScript code, the font matrix entry in the dictionary itself is scaled by the scalefont operator to set the point size; in QuickDraw GX code, the point size is contained in the shape’s style and can be set by a call to GXSetShapeTextSize. For the most part, that’s it for similarities.Characters and glyphs. To understand the full capabilities of QuickDraw GX typography, you must first understand the difference between characters and glyphs. Characters are symbols that have linguistic meaning, usually a letter from an alphabet. Glyphs are renditions of those characters or combinations of them. For example, for any given character from an alphabet, there may be various forms of this character that are appropriate to draw at different times (see Figure 4).Figure 4Different Glyphs From a Roman FontThe most complex text drawing in QuickDraw GX comes from the layout shape. With a layout shape, the application specifies which characters in the language make up the piece of text to be displayed. Given the language and script system specified in the layout shape’s style object, QuickDraw GX can then figure out which glyphs to use for those characters.The top line of Figure 4 shows three glyphs from a particular Roman font. They’re the glyphs for lowercase f, lowercase i, and a lowercase fi ligature. The ligature is an example of a glyph that represents two characters. With a layout shape, QuickDraw GX can detect when the i follows the f and automatically choose the fi ligature glyph when drawing. This allows the user to type f followed by i rather than having to figure out what key combination to type and what font to select to get the fi ligature.The bottom line of Figure 4 illustrates another example of different glyphs for the same character. The glyph on the left is the normal capital A for that font. The glyph on the right is a glyph to use at the beginning of the line. With a layout shape, QuickDraw GX detects when the character is at the beginning of the line and automatically chooses the correct glyph.Platforms and encodings. In most versions of the PostScript language, any given encoding of a font has access to only 256 glyphs at a time. If a font contains more than 256 glyphs, you must use different font dictionaries, each with a different encoding. In effect, the application generating the PostScript code must select from different font dictionaries to create all the glyphs in a given typeface. QuickDraw GX can take advantage of fonts that contain up to 65535 glyphs, all of which are available to any shape object.The bytes contained in the geometry of a text, layout, or glyph shape can have different meanings depending on the gxFontPlatform and gxFontScript attributes set in the style object. When gxFontPlatform is set to gxMacintoshPlatform and gxFontScript is set to gxRomanScript, the stream of bytes means the same thing it does on a Roman Macintosh system today. If gxFontPlatform is set to gxGlyphPlatform, the bytes are taken two at a time as a short and are treated as glyph indices in the font; a shape object then has direct access to all the glyphs in a font. Each font indicates which platforms, languages, and scripts it supports.Positioning glyphs in a line of text. The PostScript language provides several methods for allowing your application to explicitly position glyphs on a page. The simplest is the show operator. This operator simply draws each glyph specified by the string and moves the current point by the advance width of that glyph. The ashow and awidthshow operators allow the application to modify the advance width for all glyphs or a particular glyph. With the kshow operator you can call a general procedure between the drawing of each pair of glyphs specified by the string and the procedure can modify the graphics state before drawing the next glyph. This process is generally used for kerning. In kerning the procedure is passed the two character codes, uses those two codes to look in a kerning table, and modifies the current point appropriately. This method, while totally flexible, is difficult to use because the application must parse font metric files to derive kerning tables to use with the kshow procedure.PostScript Level 2 provides a way to position characters without executing a procedure for each glyph drawn — the xshow, yshow, and xyshow operators. With these operators the application can specify an array of advance widths to use in place of the built-in advance widths of the font. This is faster than using the kshow operator. Again, the application must generate the advance widths to use, usually by parsing font metric tables and deriving kerning information.It’s possible for applications to generate PostScript code that uses the kshow operator or the xshow, yshow, and xyshow operators to justify, kern, and track text. In QuickDraw GX, a layout shape does this automatically, as specified by metrics in the QuickDraw GX font. Each font contains tables that specify kerning pairs with kerning amounts, optimal tracking values, and optimal choices for how justification should occur. Your application can override these values if you choose, but the values in the font are written by the font designer and therefore cause QuickDraw GX to position the glyphs as the font designer intended. Your application need not parse the font metric tables and position glyphs directly.When you use layout or glyph shapes, text can have multiple style runs. This allows a single shape object to switch between fonts, sizes, text faces, and languages as many times as desired (see Figure 5).Figure 5A Shape Object With Multiple Style RunsIf you want the application to have direct control over positioning glyphs, use a glyph shape object rather than a layout shape object. Glyph shapes bypass the automatic positioning information. This approach is similar to using PostScript operators. When using a glyph shape, you specify exactly which glyphs are to be drawn in what styles and at what positions and angles. Then, when GXDrawShape is called, it uses this information for rendering. Using the positions and advance bits in a glyph shape, your application can draw the glyphs anywhere on the page. Figure 6 illustrates some of the data in a glyph shape with various values in the positions and advance bits. Where the advance bit is 1, the Figure 6Some of the Data in a Glyph Shapevalue in the positions array is that glyph’s absolute position on the page (before being mapped through the shape’s transform). Where the advance bit is 0, the value in the positions array is an amount to add to the normal advance vector of the glyph. Not shown in Figure 6 is the tangents array. Each glyph in a glyph shape object also has a tangent vector that specifies an orientation for the glyph in addition to the position.Given the tangent (Tx, Ty), the glyph is transformed through the following 2 x 2 matrix:(Tx , Ty , -Ty , Tx ))It’s important to note that glyph shapes don’t do any character-to-glyph mapping, as do layout shapes. They map character codes to glyph codes as specified by the gxFontPlatform attribute in the style object, but they don’t automatically pick alternate forms of characters (ligatures, for example). If you use glyph shapes in your application, you have to do nearly everything; however, glyph shapes provide the most flexibility.QuickDraw GX is language aware. When you use the layout type of shape objects, QuickDraw GX is aware of the language and script as specified by the style object. This allows QuickDraw GX to automatically run text, for example, from left to right for English, right to left for Hebrew, and vertically for Chinese. Each font/language combination has a set preference for which way to run text. Because the layout shape can automatically determine where to position the glyphs based on the language, your application can maintain the text for the shape in its linguistic order rather than the display order.QuickDraw GX also uses script-dependent information when justifying text. For example, in English, justification involves adding or removing white space between glyphs. In Arabic, glyphs are joined by horizontal lines called Kashidas. When justifying Arabic text, QuickDraw GX automatically varies the length of the Kashida to compensate for added or removed space in the text.PRINTING MODELSThe printing models for QuickDraw GX and the PostScript language differ in much the same ways as the graphics models do. PostScript code uses a stream-based protocol while QuickDraw GX uses an object model.PostScript stream-based printing. PostScript language elements invoke various printing commands such as commands for choosing a particular type of paper or a particular page orientation. With PostScript Level 1, some implementations added operators for bin selection and other device-dependent features. PostScript Level 2 has the setpagedevice operator, which is a generalization of this idea.A PostScript stream that represents an actual document rather than a particular encapsulated graphic has those various operators embedded between the pages to instruct the printer page by page. In addition to operators, there’s a defined protocol for including comments in a PostScript stream to identify the document elements. Some of these occur at the beginning of the stream and some of them occur between the pages. They’re called document structuring conventions (DSCs) and are described in detail in the PostScript Language Reference Manual, Second Edition.QuickDraw GX object-based printing. For each element of a printed document, there’s a corresponding QuickDraw GX object. Your application simply associates the appropriate objects when spooling the document’s pages and QuickDraw GX does the rest. Your application need not worry about the details of paper trays and transformation matrices to reorient the page.Global document properties, such as the device information and the number of pages or copies, are stored in the job object. Properties associated with a particular page are stored in the format object. Each format object owns a paper type object.The job object can be thought of as a context for the document that your application is spooling. The format object contains information such as the page orientation (portrait or landscape) and paper type (US Letter, Envelope, and so on). Each page your application generates can have a different format associated with it. The job object contains a default format that’s used if a specific format isn’t specified for a page. All your application needs to do to set up the contents of these objects is call the QuickDraw GX printing dialog boxes. The following code example shows how five pages in one job can be printed with four different formats. (The contents of each page are stored in a picture shape object.)OSErr Print5Pages(shape page1, shape page2, shape page3, shape page4,        shape page5)    {        OSErr                     status;        EditMenuRecord         myEditMenu;                    gxFormat                 format1, format2, format3;        gxJob                     myJob;        DialogResult             result;        status = GXNewJob(&myJob);        if (status != noErr) return (status);        /* Add code here to set up the Edit menu record. */        . . .        /* Use dialog box to set up default format for the job. */        result = GXJobDefaultFormatDialog(myJob, &myEditMenu);        if (result == okSelected) {            /* Create three separate formats for the first three pages. */            format1 = GXNewFormat(myJob);            format2 = GXNewFormat(myJob);            format3 = GXNewFormat(myJob);                        /* Bring up dialog box to set up page 1's format. */            result = GXFormatDialog(format1, "\pPage Setup for Page 1",                &myEditMenu);            if (result != okSelected) goto canceled;                        /* Bring up dialog box to set up page 2's format. */            result = GXFormatDialog(format2, "\pPage Setup for Page 2",                &myEditMenu);            if (result != okSelected) goto canceled;                        /* Bring up dialog box to set up page 3's format. */            result = GXFormatDialog(format3, "\pPage Setup for Page 3",                &myEditMenu);            if (result != okSelected) goto canceled;            /* Bring up the Job dialog box. */            result = GXJobPrintDialog(myJob, &myEditMenu);            if (result != okSelected) goto canceled;            /* Now spool the document. */            GXStartJob(myJob, "\pdevelop Article", 5);                GXPrintPage(myJob, format1, page1, 1);                GXPrintPage(myJob, format2, page2, 2);                GXPrintPage(myJob, format3, page3, 3);                GXPrintPage(myJob, nil, page4, 4);     /* Page 4 uses job's                                                                          default format. */                GXPrintPage(myJob, nil, page5, 5);     /* So does page 5. */            GXFinishJob(myJob);canceled:            GXDisposeFormat(format1);            GXDisposeFormat(format2);            GXDisposeFormat(format3);        }        status = GXGetJobError(myJob);        GXDisposeJob(myJob);        return (status);    }This example calls the QuickDraw GX routines that present dialog boxes, allowing the user to configure all the job and format properties. However, the QuickDraw GX printing API allows the programmer to control these properties directly, if desired. Using this API, your application can exert total control of all aspects of printing without ever bringing up a dialog box!IF YOU CAN DO IT IN POSTSCRIPT . . .This section shows you how to use QuickDraw GX to do some of those tricky things you’ve figured out how to do with PostScript code. FRAMING SOMETHING WITH A NONSQUARE PENQuickDraw has the concept of a nonsquare pen. You can set the width and height of the pen independently. Both the PostScript language and QuickDraw GX have only one pen dimension; however, you can simulate the framing of a path with a nonsquare pen. Here’s the PostScript code:% Assuming there exists a path ready for drawing in the graphics state:gsave                % Save the current graphics state to muck with later.1 setlinewidth    % Set the current line width to 1.xPen yPen scale    % Scale the CTM by the pen width and pen height.stroke                % Stroke the path. The scaled matrix will scale the                        % 1-unit line width by xPen in the x-axis and yPen in                         % the y-axis when stroking. This produces the desired                        % effect.grestore            % Put back the CTM and line width.newpath                % Clear the path since we did grestore after stroke.Now, here’s how to do it with QuickDraw GX:void FrameNonSquare(gxShape theShape, fixed xPen, fixed yPen){    gxShape         tempShape;    gxMapping        aMapping;    gxTransform    aTransform;    /* Make a copy of the shape to operate on. */    tempShape = GXCopyToShape(nil, theShape);    /* Make a new transform for the shape so it's scaled by the pen. */    aTransform = GXCopyToTransform(nil, GXGetShapeTransform(tempShape));    GXScaleTransform(aTransform, xPen, yPen, 0, 0);    GXSetShapeTransform(tempShape, aTransform);    /* Make an inverse mapping to premap the shape so that when it's         scaled by the pen it will return to its original self. */    GXResetMapping(&aMapping);        /* Set to identity. */    GXScaleMapping(&aMapping, FixedDivide(ff(1), xPen),        FixedDivide(ff(1), yPen), 0, 0);    GXMapShape(tempShape, &aMapping);        GXSetShapePen(tempShape, ff(1));    /* Set pen width to 1. */    GXDrawShape(tempShape);    /* Draw it. */    GXDisposeShape(tempShape);    GXDisposeTransform(aTransform);}MODIFYING GLYPHS IN A FONTThe PostScript language allows you to modify the behavior of glyphs by changing entries in the font dictionary, either directly or with the makefont operator.Oblique text. This PostScript code creates oblique text:/Helvetica findfont 24 scalefont        % Put 24-point Helvetica dictionary                                                     % on the stack.[1.0 0.0 -0.25 1.0 0.0 0.0] makefont    % Skew the font dictionary.setfont                                            % Make it the current font.This is how to do it with QuickDraw GX:/* Modify the style object to do oblique text. */void ObliqueText(gxStyle aStyle)    {    gxTextFace        theFace;    gxTransform    aTransform;    aTransform = GXNewTransform();             /* Make a transform. */    GXSkewTransform(aTransform, fix1/4, 0, 0, 0);     /* Skew it. */    theFace.faceLayers = 1;                     /* Set text face to 1 layer. */    GXResetMapping(&theFace.advanceMapping); /* Make advance mapping */                                                             /* the identity mapping. */    theFace.faceLayer[0].outlineTransform = aTransform;    theFace.faceLayer[0].outlineStyle = nil;    theFace.faceLayer[0].boldOutset.x = 0;    theFace.faceLayer[0].boldOutset.y = 0;    theFace.faceLayer[0].outlineFill = gxSolidFill;    theFace.faceLayer[0].flags = 0;    GXSetStyleFace(aStyle, &theFace);    GXDisposeTransform(aTransform);}The text face data structure is used to modify the way glyphs are drawn. A text face can have multiple layers and each layer can have a style (for patterns and so on), a transform, a boldness, and a fill type. By using all of the fields and layers in the text face, you can affect the drawing of text in all sorts of nasty ways. The next example uses the fill type to simulate outline text.Outline text. This code creates outline text in QuickDraw GX:/* Modify the style object to do outline text. */void OutlineText(gxStyle aStyle){    gxTextFace        theFace;    gxStyle            layerStyle;    theFace.faceLayers = 1;                     /* Set text face to 1 layer. */    GXResetMapping(&theFace.advanceMapping); /* Make advance mapping */                                                            /* the identity mapping. */    layerStyle = GXNewStyle();    GXSetStylePen(layerStyle, fix1/16);            /* Make pen 1/16 point. */    theFace.faceLayer[0].outlineTransform = nil;    theFace.faceLayer[0].outlineStyle = layerStyle;    theFace.faceLayer[0].boldOutset.x = 0;    theFace.faceLayer[0].boldOutset.y = 0;    theFace.faceLayer[0].outlineFill = gxClosedFrameFill;        theFace.faceLayer[0].flags = 0;    GXSetStyleFace(aStyle, &theFace);    GXDisposeStyle(layerStyle);}To do the same thing with PostScript code, modify the font dictionary:/Helvetica findfont             % Put Helvetica's dictionary on the stack.dup length 1 add dict begin     % Make a copy of the font dictionary and put{                                        %  it on the stack.    1 index /FID eq {pop pop} {def} if else} forall/PaintType 2 def    % Make the font PaintType 2. This means stroked./StrokeWidth 1.0 16.0 div def        % Make the stroke width 1/16.currentdictend/HelveticaFramed exch definefont pop    % Define the outlined font./HelveticaFramed findfont 24 scalefont setfont    % Make it current.CONVERTING FRAMED OBJECTS INTO FILLED OBJECTSSometimes you want a shape that, if filled, is the same as the result of stroking the original shape. In PostScript code, calling strokepath on the current path applies the current pen width to the path, and the resulting path is one that can be filled to produce the result that calling stroke would have produced.In QuickDraw GX, the GXPrimitiveShape routine applies the fill and style to any shape to produce a primitive shape. A primitive shape is one that’s completely described by its geometry and fill and doesn’t need a style object to be drawn properly. For example, a path that’s framed with a pen width of 10 becomes a solidFilled shape.CONVERTING TEXT INTO A PATHIn the PostScript language, the charpath operator takes a string and converts it into a path using the current font in the graphics state. The following code converts the word Hello into a path using the font and font size of the current graphics state:(Hello) false charpathAny QuickDraw GX text, glyph, or layout shape object can be turned into a path shape object by calling GXSetShapeType as follows:GXSetShapeType(myTextShape, pathType);This converts the shape object myTextShape into a path shape object by applying the font, font size, and text face in the shape object’s style object.NOW YOU’RE READY FOR QUICKDRAW GXWhether or not you’re familiar with the PostScript language, the preceding samples and comparisons should help you get going on your QuickDraw GX application. In the days of QuickDraw, you frequently had to resort to generating PostScript code from your application because the graphics constructs simply didn’t exist in QuickDraw. However, QuickDraw GX is a robust graphics, text, and printing architecture that does all the things that current drawing applications do and then some. There should be no need to generate your own PostScript code from your application in the world of QuickDraw GX. Using QuickDraw GX as the medium for all drawing also gives your application the added benefit of being able to produce application-independent portable digital documents. You can view portable digital documents with TeachText and print them on any printer, PostScript or not. Enjoy!THE VETERAN NEOPHYTE    THROUGH THE LOOKING GLASS    DAVE JOHNSON Symmetry is more interesting than you might think. At first glance there doesn’t seem to be much to it, but if you look a little closer you’ll find that symmetry runs swift and cold and deep through many human pursuits. Symmetry concepts are found at the heart of topics ranging from the passionately artistic to the coolly scientific, and from the trivial to the fundamental.I learned a lot about symmetry while trying to learn how to create tile shapes. I’ve always been intrigued and tantalized by M. C. Escher’s periodic drawings, the ones that use lizards or birds or fish or little people as jigsaw puzzle pieces, interlocking and repeating forever in a systematic way to completely tile a surface (mathematicians call this tessellation of a plane). My own halting attempts to draw tessellations have met with only tepid success. Especially hard is creating tiles that are recognizably something other than meaningless abstract shapes.To accomplish this feat of tiling a plane, you have to apply a set of constraints to everything you draw. Every line serves multiple purposes. In one of Escher’s prints, for example, the same line that forms the left arm of one lizard also forms the tail of an adjacent lizard. That line is also repeated ad infinitum across the plane; every lizard’s left arm and tail is defined by that same line shape. Now think about drawing a line like that. Not only are you drawing two shapes with one line (which is difficult enough), but you’re also drawing innumerable identical lines simultaneously. They     sort of spin out from the point of your pencil in a dazzling dancing tracery of lines. Trying to hold all that complexity and interrelatedness in your head is very, very difficult.Being a basically lazy person with too much time on my hands, I decided to write a program that would handle it all for me. I envisioned a direct manipulation kind of thing: as I changed a line, all the other corresponding lines in the pattern would change simultaneously. I figured it would be easy to draw little people and leaves and fishes that perfectly interlocked, if only I didn’t have to keep all those interdependencies and constraints in mind and could just draw. Also, I thought maybe that by interactively “doodling” and being able to watch the whole pattern change on the fly, I could get some sort of gut feeling for the constraints.All this was way back in 1990. To learn more, I bought a book called Handbook of Regular Patterns: An Introduction to Symmetry in Two Dimensions by Peter S. Stevens. The book is a sort of systematic catalog of hundreds of regular patterns, including many of Escher’s, and also has a great introduction to the mathematics of symmetry (which turns out to figure heavily in this tiling business). Unfortunately, after an intense but superficial examination and an evening or two playing with pencil and paper and little dime store pocket mirrors (bought in a frenzy of excitement the day after I bought the book), I decided that the program would be way too hard to write to make it worth it, and shelved the whole thing.Well, last month I finally picked up the idea again. QuickDraw GX was getting close to being released, and it had features that made it relatively easy to implement what I wanted: very flexible transformation and patterning capabilities, and excellent hit testing, which makes implementing direct manipulation of lines a snap. So I dusted off Stevens’s book and my little mirrors and got to work, trying to figure out the constraints on the tiles and implement the program.Here’s a basic fact about tiling a plane that I still find thoroughly remarkable three years after I first learned     about it: there are only 17 possible arrangements of tiles. “But wait!” I hear you cry in your many-throated voice, “How can that be? Surely there are a very large number — nay, an infinite number — of possible tile shapes?”Well, yes, that’s true. But the way they fit together, the underlying structure, will always be one of only 17 possibilities. This applies to any two-dimensional pattern made up of regularly repeating motifs, not just seamless tilings. The motif that’s repeated, of course, can be anything: a leaf, a loop, or a lizard; a frog, a flower, or a fig — it makes no difference. There are still only 17 ways to build a regularly repeating 2-D pattern. This was proved conclusively in 1935 by a mathematician named von Franz Steiger. (Yes, that’s his name; I checked twice.)To see why, you need to learn a little about the fundamental symmetry operations and how they combine with one another to breed other symmetry operations. I’ll gloss over most of the details (see Stevens’s book, or any introductory text on crystallography, for more info), but the gist of it is that when you sit down and begin to repeat some motif by repeatedly applying fundamental symmetry operations — like reflection and rotation — you find an interesting thing: combining symmetry operations with one another often causes other types of symmetry to sort of spring into existence. And the operations always seem to gather themselves into the same few groups.Figure 1 shows a very simple example. We start with a simple motif (a comma shape) and repeat it by applying a transformation to it, in this case by reflecting it across a vertical line. Then we reflect the whole thing again, this time across a line perpendicular to the first one. The resulting pattern of four commas possesses mirror symmetry in two directions, meaning that a reflection of the entire pattern across either one of the lines leaves the pattern unchanged. But if you study it, you’ll find another symmetry embedded in the pattern that we didn’t explicitly specify. In particular, it shows rotational symmetry: rotating the pattern 180˚ about its center leaves it unchanged, too.    Figure 1Building a Simple Symmetry GroupFigure 2 shows an alternative way to create the same pattern. This time we begin with the rotation (the point of rotation, or rotocenter, is shown by an oval). If we then run a mirror line through the rotocenter, we produce exactly the same structure, the same symmetry group, as we did by combining two perpendicular reflections above. These three symmetry operations (two perpendicular reflections and a 180˚ rotation) come as a set. Combining any two automatically produces a pattern that also contains the third. This is where the constraints on the structure of regular 2-D patterns appear. No matter how you combine and recombine the fundamental operations to cover a plane, you find yourself generating the same 17 arrangements, the same 17 groups of operations.Figure 2Another Way to Build the GroupBy the way, this example group isn’t one of the 17 plane groups. It’s one of the 10 point groups, groups whose constituent transformations operate around a single point. In case you’re curious, there are also 7 line groups (ways to repeat motifs endlessly along a line)     and 230 space groups (ways to repeat a solid shape to fill three-dimensional space). I don’t know if anyone has figured out the groups of higher-dimensional spaces. Knowing mathematicians, I don’t doubt it.So what about that computer program I was going to write? As this column goes to press, it’s undergoing its second major overhaul, having suffered mightily from my “write it first, then design it” philosophy. So far I have 5 of the 17 groups implemented, and it’s pretty cool. There’s no telling how far I’ll actually get before my deadline arrives, but I’ll put the results, however clunky and raw they may be, on this issue’s CD so that you can check it out.I’ve learned a couple of things already: Even with the constraints automatically handled by the computer, it’s still really hard to create representational shapes that will tile a plane, though creating abstract tile shapes is suddenly a piece of cake. Also, I still haven’t gotten the kind of gut-level understanding of the structure of the patterns that I was hoping for (though just watching them change as I doodle is very entertaining).I’ve also learned along the way that symmetry concepts go far deeper than the simple plane groups I’m messing with. The rules of symmetry and of form are, in a sense, manifestations of the structure of space itself. It’s an odd thought that space has a structure, isn’t it? Normally we think of space as a sort of continuous nothingness, as an absence of structure or as a formless container for structure. But space itself does have a structure, and every single material thing must conform to that structure in order to exist.Physicists, of course, have been trying very hard for a long time to describe precisely the nature of space. Einstein thought that there was really nothing in the world except curved, empty space. Bend it this way, and you get gravity, tie it in a tight enough knot and you get a particle of matter, rattle it the right way and you get electromagnetic waves.    And there are other symmetries, symmetries even more fundamental. Einstein’s theory of special relativity broke some of the central symmetries in physics, and thus called attention to the role of symmetry in science. Shortly afterward a mathematician named Emmy Noether established a remarkable fact: each symmetry principle in physics implies a physical conservation law. For instance, the familiar conservation of energy law is implied by symmetry in time — energy is conserved because time is symmetric. (Of course, I’m greatly oversimplifying here. The symmetry of time is one that Einstein tarred and feathered and ran out of town on a rail. He showed that under extreme conditions time is not symmetric, and energy isn’t conserved. Reassuringly, he replaced these broken and bloodied false symmetries with fresh new ones, but they’re well beyond the scope of this column and my poor addled brain.) The point is that symmetries seem to be part of the very fabric of the universe; they seem to be the warp and weft of existence itself.Yes, it’s heady stuff indeed, this symmetry business. I’m staying plenty busy just trying to understand the symmetries possible in a plane, thank you very much, so I’ll leave worries about the symmetry of space-time or of K-meson decay to the pros. Once again, I find that by looking just beneath the surface of a seemingly innocuous topic, I find depth and complexity beyond measure. Ain’t life grand?    RECOMMENDED READING    •    Handbook of Regular Patterns: An Introduction to Symmetry in Two Dimensions by Peter S. Stevens (MIT Press, 1981).    •    Patterns in Nature by Peter S. Stevens (Little, Brown & Company, 1974).    •    Where the Wild Things Are by Maurice Sendak (Harper & Row, 1963).    MANAGING COMPONENT REGISTRATIONGARY WOODCOCKOne of the many design problems a component developer may face is how to register interdependent components in a predetermined fashion so that any given component is registered before the components that depend on it. This article and the sample code that accompanies it show you how to do just that.The Component Manager is an effective mechanism for providing extended functionality to the Macintosh platform. Although a single component can perform impressive tasks, often it’s a hierarchy of components, cooperating with one another, that provides the most powerful capabilities. An example of such a hierarchy is found in QuickTime movie playback using the movie controller component (see Figure 1). This component uses the services of many other components, all of which cooperate together, to make interaction with QuickTime movies very simple yet very powerful.There are distinct advantages to partitioning functionality in this manner. First, by creating components that perform simpler processing, you increase the likelihood that you can leverage the investment you’ve made in your code by using it in more than one place. Second, it’s easier to debug smaller components than a gigantic everything-and-the-kitchen-sink component. Finally, a component that provides very elementary functionality is easier to override or update (via component replacement or capture) than a large, complex component.This situation — a component depending on the presence of several lower-level components to perform its function — is very commonplace. In such cases, it’s important to take steps to ensure that supporting components are available when your component needs them. There are two obvious choices for when to go looking for the components you depend on: when your component is being registered (in its register routine), or when your component is first opened (in its open routine). Most software-dependent components don’t need to worry much about managing component registration. Generally such a component should just auto-register, and then check for any required components in the open routine; if the required components aren’t available, your open routine can return an error. The caller of Figure 1The Movie Controller Component Hierarchyyour component can then handle the error in whatever way is most appropriate. There is a case, however, where checking at registration time might be necessary; that’s what this article is about.DO I REALLY NEED TO WORRY ABOUT THIS?One potential problem occurs in situations where the Component Manager’s registration list is used to build some user interface element, such as a pop-up menu or a list. In this case, the general assumption is that because a component’s name is displayed in a user interface element, a user can select it and it will do whatever it’s supposed to do — after all, if the component couldn’t perform its function, it wouldn’t be displayed as an option for the user, right? Well, that depends.Let’s look at an example. The SuperOps company builds the WhizBang video digitizer card and supplies two software components with it — the WhizBang video digitizer component and the WhizBang sequence-grabber panel component (which is used to control features specific to the WhizBang hardware). The component files are named WhizBang Video Digitizer and WhizBang Panel. In its register routine, the WhizBang video digitizer component checks for its hardware and registers with the Component Manager only if the hardware is present (this is normal behavior for components that encapsulate hardware functionality). The WhizBang sequence-grabber panel component checks for the availability of the WhizBang video digitizer component when it receives either an open message or a “panel can run” message — it doesn’t get a register message, and therefore it always registers successfully with the Component Manager.Now let’s say I’ve got a Macintosh Quadra 950 with multiple sound and video digitizers installed (I can dream, can’t I?), one of which is the WhizBang card. I remove the WhizBang card from my computer, but I leave the two WhizBang components installed. I then start up my Macintosh Quadra and run my favorite movie capture application. I display the sequence-grabber video settings dialog box, and I see a dimmed item in the panel pop-up menu — “WhizBang panel.” The dimmed name indicates one of two things: another application has the WhizBang video digitizer open, so it’s not available, or the WhizBang video digitizer component isn’t registered at all, so the panel can’t run.In this case, we already know that the WhizBang card isn’t installed, so there’s no way this panel can ever be enabled, given the current hardware configuration. Rather than confuse users by displaying the panel name in the pop-up menu (even if it is dimmed), it would be nicer if it weren’t displayed at all. To do that, we need to ensure the following order of events at startup: the video digitizer component must attempt to register first, and then the panel component must attempt to register (this implies that the panel component must implement a register routine), checking for the presence of the video digitizer component before it does so. Further, this sequence of events must not be influenced by the alphabetic order of the component filenames. Guess what? We can realize this goal by managing component registration.This article and the sample code on this issue’s CD demonstrate various ways of managing component registration. We start with the easiest, most obvious approach and work our way up to a more sophisticated solution, pointing out the pros and cons of each along the way. If you just want the “answer” without any fanfare, skip ahead to the section “Mo’ Better: Use a Loader Component to Manage Registration.”I assume that you’re familiar with the Component Manager and that you know something about how components are written. For more information on these topics, see Inside Macintosh: More Macintosh Toolbox and “Techniques for Writing and Debugging Components” in develop Issue 12.THE SYSTEM VERSION AND THE COMPONENT MANAGERThe Component Manager behaves slightly differently depending on the version of system software it’s running under and how the Component Manager was installed. It’s important to know about these subtleties in order to understand how to work with the Component Manager to install your components properly.In system software version 6.0.7, the Component Manager is installed as part of an INIT (usually the QuickTime INIT). During the INIT installation, the Component Manager examines the contents of the System Folder and its subfolders for files of type 'thng'; in each 'thng' file, it looks for resources of type 'thng', which it then uses to register the corresponding components. The important point here is that the Component Manager is not available until after the INIT has been installed.Like system software version 6.0.7, versions 7.0 and 7.0.1 pick up the Component Manager via an INIT, and so again the Component Manager isn’t around until after the INIT has been installed. The main difference in System 7 is that in addition to searching the System Folder and its subfolders for component files, the Component Manager will also examine the contents of any subfolders that are in the Extensions folder.Examples of INITs in system software versions 7.0 and 7.0.1 that install the Component Manager are QuickTime, AppleScript, and Macintosh Easy Open. Note that your component can’t assume that just because the Component Manager is installed, QuickTime is installed — always use the Gestalt selectors to determine what functionality is available.The Component Manager is actually part of System 7.1 and, as a consequence, is available before the INIT process is started.METHODS FOR MANAGING COMPONENT REGISTRATIONNow that we have a good idea of when the Component Manager is installed and where it’s searching for components, let’s see what we can do to make sure that our components get registered in the order we want them to be registered.We’ll use some simple components to illustrate the various methods we might use to manage component registration. In the sample code provided on the CD are three components — Moe, Larry, and Curly — that together establish a functional component hierarchy (see Figure 2). The hierarchy is such that Moe doesn’t depend on any other components, Larry depends on Moe, and Curly depends on both Larry and Moe. To enforce these dependencies, we use register routines in Larry and Curly to make sure that the components they need are present before they actually allow themselves to be registered with the Component Manager. To let us know when each of these components is actually registered, Moe’s register routine calls SysBeep once, Larry’s calls SysBeep twice, and Curly’s calls SysBeep three times. By the way, these components really don’t do anything useful at all, but you probably figured that out already.Figure 2The Moe, Larry, and Curly Component HierarchyRISKY: LET THE COMPONENT MANAGER TAKE CARE OF ITWe can always simply let the Component Manager do whatever comes naturally — in this case, auto-registration. This method works only as long as you aren’t picky about the order in which your components are registered. (Obviously, if your component doesn’t depend in any way on the presence of other components, you’re golden.) In our example scenario, though, we can’t count on the Component Manager recognizing our constraints and doing the right thing. The Component Manager doesn’t have enough information to know that our components have an ordering dependency (kinda reminds you of INITs, doesn’t it?).Nonetheless, let’s look at what happens. The following is what occurs on my Macintosh Quadra 700 running System 7.1 and QuickTime 1.6, but you shouldn’t infer that this is how the Component Manager will behave from now until eternity — there is no documentation whatsoever that provides this kind of detailed information on component registration behavior, so it can change.We start with each component in a separate file. We might expect that the Component Manager would register component files in alphabetic order, and in fact this is exactly what happens. The first component that the Component Manager tries to register is Curly. However, Curly needs both Moe and Larry before it can be registered, and neither of them is present, so Curly bails. Larry comes next, and because Larry needs Moe, and Moe isn’t around yet, Larry bails. Moe is last, and Moe doesn’t depend on any components at all, so Moe is registered successfully. One out of three’s not too good, though.We might further expect that if we put all of our components in a single file, the Component Manager would walk the component resources from lowest resource ID to highest resource ID. If that were true, all we’d have to do is give our components ascending resource IDs in the order in which we want them to be registered (say, 200 for Moe, 300 for Larry, and 400 for Curly), and we’d be done! Well, I know we all long for the day that the omniscient System will always figure out the right thing to do regardless of how we’ve specified that it be done, but that day’s not here yet — or, to quote KON, “It’s just a computer.”The Component Manager calls Count1Resources to find out how many 'thng' resources are in a file. It then iterates through these resources, using the Get1IndResources call. Unfortunately, there’s no guarantee that the Resource Manager will index resources in the same numeric order as their corresponding resource IDs; that is, even if Moe’s 'thng' resource ID is lowest (200), Moe’s resource index (as maintained by the Resource Manager) may or may not be 1. If we actually go ahead and try this (you can try this yourself with the Moe, Larry, and Curly component file on the CD, which I created by simply Rezzing the three components into a single 'thng' file), we find that we get exactly the same behavior we observed with the separate component files — first Curly fails, then Larry fails, and only Moe registers successfully. This approach just isn’t reliable enough for our purposes, and we need a better mousetrap.BETTER: USE AN INIT TO MANAGE REGISTRATIONHere’s an idea — we can use an INIT to manage the registration order of our components! We’ll create a resource that describes the order in which to register our components, and then the INIT can read this resource, registering the component resources in the specified order. The registration order is simply defined as the position in the component list; that is, the first component in the list is registered first, the second component in the list is registered second, and so on.The component load order resource. We use a custom resource, called a component load order resource, to indicate to our INIT the order in which the components in the INIT file should be registered. The resource type is defined as 'thld' (for “thing load”) and the resource is a 1-based list of structures of type ComponentLoadSpec, as defined below:#define kComponentLoadOrderResType    'thld'typedef struct ComponentLoadSpec {    ResType    componentResType;    short    componentResID;} ComponentLoadSpec, *ComponentLoadSpecPtr, **ComponentLoadSpecHdl;typedef struct ComponentLoadList {    short                 count;    ComponentLoadSpec spec[1];} ComponentLoadList, *ComponentLoadListPtr, **ComponentLoadListHdl;The componentResType field contains the component resource type, in this case 'thng', and the componentResID field contains the component resource ID.The loader INIT. Our INIT — called, surprisingly enough, LoaderINIT — doesn’t really do much work. When the INIT is executed, it checks to see whether the Shift key or mouse button is held down; if so, it quits. If not, it then checks for the presence of the Component Manager, and if the Component Manager is installed, it tries to load our components with a call to the LoadComponents routine.main (void){    KeyMap keys;        // INIT setup for THINK C (these routines are defined in <SetupA4.h>)    RememberA0();    SetUpA4();        // If mouse or Shift key down, don't bother.    GetKeys (keys);    if (!Button() && !(1 & keys[1])) {        OSErr    result = noErr;                    // Is the Component Manager available?        if (HasComponentMgr()) {            // Load the components!            result = LoadComponents (kComponentLoadListResType,                kLoaderBaseResID);        }    }    // INIT cleanup for THINK C (this routine is defined in <SetupA4.h>)    RestoreA4();}The LoadComponents routine. LoadComponents does the job of reading the component load order resource and loading each of the components it points to; this routine is shown below.static OSErrLoadComponents (ResType loadListResType, short loadListResID){    OSErr    result = noErr;    ComponentLoadListHdl    componentLoadList = (ComponentLoadListHdl)        Get1Resource (loadListResType, loadListResID);    // Did we get the component load list?    if (componentLoadList != nil) {        ComponentLoadSpec          componentLoadSpec;        ComponentResourceHandle componentResHdl;        Component                      componentID;        short    numComponentsToLoad = (**componentLoadList).count;        short i;        for (i = 0; i < numComponentsToLoad; i++) {            // Get the component load spec.            componentLoadSpec = (**componentLoadList).spec[i];                            // Get the component resource pointed to by this spec.            componentResHdl = (ComponentResourceHandle) Get1Resource (                componentLoadSpec.componentResType,                componentLoadSpec.componentResID);                            // Did we get it?            if (componentResHdl != nil) {                // Register it.                componentID = RegisterComponentResource (componentResHdl,                    kRegisterGlobally);                if (componentID == 0L) {                    // RegisterComponentResource failed.                    result = -1L;    // Return anonymous error                }            }            else {                // Get1Resource failed.                result = ResError();            }        }    }    else {        // Couldn't get component loader resource.        result = ResError();    }    return (result);}Why it’s too good to be true. LoaderINIT works fine if we’re running System 7.1 or later (the Component Manager is installed before the INIT 31 process begins) or we name LoaderINIT something alphabetically greater than the name of the INIT that’s installing the Component Manager (assuming we know this somehow). If neither of these conditions is met, LoaderINIT will execute before the Component Manager is installed, and none of our components will be registered. Bummer.We could do something sneaky like patch a trap that we’ve observed being called right before the Finder comes up, and then execute our INIT code. In effect, this defers our normal INIT execution until after all other INITs load (provided they aren’t pulling the same sneaky trick). However, we’d rather be more elegant and, dare I say, more compatible. We could also name our INIT ~LoaderINIT (or something similar) to guarantee that we run last in the INIT sequence (a somewhat naive hope), but we’d rather not become participants in the latest chapter of the ongoing saga of INIT Wars (Chapter XX: MacsBug Strikes Back). So what’s a component developer to do? MO’ BETTER: USE A LOADER COMPONENT TO MANAGE REGISTRATIONFortunately, we don’t have to give up yet. We can avoid the shortcomings of the INIT approach by using a component to load our components — a component we’ll call, oh, I don’t know, something original; how about . . . a loader component.The loader component. The loader component is a very simple component. It implements only the open, close, can do, version, and register selectors, and has no unique selectors of its own. It resides in a file of type 'thng', so the Component Manager will auto-register it. Also, the cmpWantsRegisterMessage flag is set in the componentFlags field of its component resource so the Component Manager will send it a register message at auto-register time. Our other three components (Moe, Larry, and Curly) are also included in the loader component file.When the loader component is registered, it receives three messages from the Component Manager — open, register, and close. The register routine does all the work. It performs basically the same checks that are performed in LoaderINIT and calls the same LoadComponents routine described earlier to manually register Moe, Larry, and Curly. The loader component’s register routine is shown below.pascal ComponentResult_LoaderRegister (Handle storage){    KeyMap                          keys;    LoaderPrivateGlobalsHdl globals = (LoaderPrivateGlobalsHdl) storage;    OSErr                         result = noErr;        #ifndef BUILD_LINKED    short savedResRefNum = CurResFile();    short compResRefNum = OpenComponentResFile ((**globals).self);    // Use the component's resource file (not the THINK project resource     // file) if we're running standalone.    UseResFile (compResRefNum);    #endif BUILD_LINKED        // If mouse or Shift key down, don't bother.    GetKeys (keys);    if (!Button() && !(1 & keys[1])) {        // Load the components!        result = LoadComponents (kComponentLoadListResType,            kLoaderBaseResID);    }        #ifndef BUILD_LINKED    // Restore the resource file (if running standalone).    CloseComponentResFile (compResRefNum);    UseResFile (savedResRefNum);    #endif BUILD_LINKED        return ((result == noErr) ? 0L : 1L);}The 'gnht' resource. Everything’s pretty cool up to this point, except for one minor detail — we can’t keep the component resources for Moe, Larry, and Curly as 'thng' resources in our loader component file. Why? Well, if they are kept as 'thng' resources, they’ll be auto-registered along with the loader component, and our carefully constructed mechanism for managing registration goes right out the window! Worse, we end up trying to load our components twice — once via the Component Manager’s auto-registration mechanism, and once by our own loader component!So, we need to mildly fake out the Component Manager. We do this by keeping Moe, Larry, and Curly’s component resources around as 'gnht' resources instead of 'thng' resources. The 'gnht' resource is identical to the 'thng' resource, but the Component Manager doesn’t know to look for it, so Moe, Larry and Curly aren’t auto-registered. The loader component (whose component resource is of type 'thng') does get auto-registered, and it knows where to find the component resources for Moe, Larry, and Curly because the component load order resource provides this information. Recall that in LoaderINIT, the component load specs in the component load order resource all point to resources of type 'thng'. We simply change these fields to point to resources of type 'gnht', and we’re set!PRACTICE SAFE REGISTRATIONIn this article, we’ve looked at several approaches to installing components in a predetermined order. While you’re encouraged to adapt these methods freely to fit your particular problem, keep in mind that your solution should strive to be as compatible as possible with other system extensions — your users will thank you for sparing them the frustration of renaming and removing extensions just to get your software running! SOMEWHERE IN QUICKTIME    DYNAMIC CUSTOMIZATION OF COMPONENTS    BILL GUSCHWANQuickTime’s component architecture lets you do a number of amazing and useful things by customizing components, which you can do by deriving one component based on another. Because QuickTime components are dynamically linked, preexisting applications can take advantage of a new, derived component without recompiling or rebooting. And because QuickTime is an extension of system software, the derived component will provide systemwide functionality.In this column I’ll describe how to use object-oriented techniques to customize components using a derived component. To illustrate, I’ll show you how to customize the Apple text media handler to “speak” text tracks in movies using Apple’s new Text-to-Speech Manager. You’ll find the derived component on this issue’s CD, along with a generic derived component that you can use as a basis for doing your own customizing. I’ve also supplied an application to help you debug your component. This application uses the debugging technique of registering the code inline. It’s very basic and simply plays back a movie, but it gives you access to the full debugging environment of THINK C. ABOUT THOSE OBJECT-ORIENTED TECHNIQUESAs any MacApp or class library programmer knows, there are three main steps to adding or altering functionality in an object-oriented program:     1.     Identify the class responsible for the behavior you want to alter.2.    Identify the specific methods you need to add or override.3.    Create a new class derived from the original class and implement the new methods or enhance the inherited methods. Because components can be overridden much like C++ classes, these object-oriented techniques can be applied to customizing components. (For a more in-depth comparison of components and C++ classes, see the “Be Our Guest” column in develop Issue 12.) So, the three steps to customizing components are:1.    Identify the component to use as a starting point.2.    Identify the routines in the component to override.3.    Create a derived component. Before we get into a discussion of these steps, let’s drop back and look at the nuts and bolts of QuickTime component architecture with its dynamic linking capabilities. This should give you a clearer idea of how it’s possible to alter QuickTime’s behavior at run time.DYNAMIC LINKING OF COMPONENTSThe QuickTime movie file format depends on the dynamic linking capabilities of the Component Manager. To play a QuickTime movie, you need more than just the movie data (video frames, digitized audio samples, text, and such): you also need a time source, code to read/write the data, and code to act on or interpret the data. It would be impractical to store all this information in each and every QuickTime movie. Instead, the time source and code are dynamically linked in as components, while the movie data remains in a QuickTime movie file.When a movie is opened in an application like MoviePlayer, the movie file is opened first, followed by a NewMovieXXX call (such as NewMovieFromFile). The major purpose of the NewMovieXXX call is to     dynamically link to all the components listed in the movie resource and return a handle to this “new” data structure. When a NewMovieXXX call is made, QuickTime invokes the Component Manager to load the handlers described in the media. A clock component is loaded first (type 'clok', subtype 'micr'). Then the media handler for each track is brought in (type 'mhlr'). If you have video and sound, for example, video and sound media handlers are loaded (subtypes 'vide' and 'soun', respectively). You may notice that the media handlers open other media handlers to do chores for them. The video and sound media handlers open the standard media handler (type 'mhlr', subtype 'mhlr'), which is a private, high-throughput media handler. The text media handler, though, opens the base media handler (type 'mhlr', subtype 'gnrc'). The base media handler is a public, general-purpose media handler with a lower throughput that is nevertheless fast enough for text.Next a data handler is loaded. Note that at present there’s only one kind of data handler (type 'dhlr', subtype 'alis') supporting streams of data from HFS files. If necessary, a decompressor component is loaded for video; its type depends on the compression format.Thus, a media handler and a data handler are loaded for each track. QuickTime movies use data handlers and media handlers to load, interpret, and manage the movie data. The alias data handler is responsible for opening and closing data files and for reading and writing sample data. It doesn’t understand the format of the data but merely hands off the data to the media handler to interpret. The media handler is the component that’s responsible for interpreting data retrieved from the data handler and for scheduling the rendering of this data at the correct time during movie playback. For example, the text media handler interprets text samples and renders the text track in the movie based on the current time value of the movie. The     media handler interfaces with the data handler using file offsets and with the rest of QuickTime through a time value. Thus, a major media handler chore is to convert time values into file offsets. You now know how and why a QuickTime movie dynamically links with its media handlers. With that background on QuickTime component architecture behind us, we now embark on the process of customizing the text media handler to speak its text.IN SEARCH OF A BASE COMPONENTThe first step in customizing a component is to identify the base component — the component to start with.Not all components can be customized. There are two requirements. First, the component must implement the target request; that is, it must allow another component instance to intercept all its messages. To determine whether a particular component instance implements the target request, you can use the callComponentFunctionImplemented(myComponentInstance,    kComponentTargetSelect) The second requirement is that a component must have a public API before it can be inherited from. When a component is called, it’s passed the routine’s selector in the ComponentParameters structure. The component parses this selector and jumps to the appropriate function. If there’s no public API, you can’t know the parameters and behavior of any of the component’s routines and thus can’t override them. The interface file QuickTimeComponent.h contains the APIs for all public QuickTime components.To speak text as it streams by, we’ll want to customize the Apple text media handler, which both implements the target request and has a public API. The Apple text media handler itself is a derived media handler that uses the services of the base media handler supplied by Apple. Consequently, its interface is defined in the MediaHandlers.h file. (For more on the intricacies of derived media handlers, see the “Somewhere in QuickTime” column in develop Issue 14.)    IN SEARCH OF THE ROUTINES TO OVERRIDEOur next step is to find the routines to override. In our example, one routine we need to override is the routine in the Apple text media handler where the text is rendered. In addition to rendering the text, we want to grab the text and speak it.A media handler is normally called in response to a MoviesTask call. MoviesTask is the QuickTime workhorse routine that gives time to the media handler to get the data and render it. In turn, MoviesTask calls the MediaIdle routine to do the bulk of the processing in a media handler. MediaIdle is the main routine in MediaHandlers.h. Thus, MediaIdle is the main routine we want to override. Additionally, we’ll need to override the MediaInitialize routine, which supplies us with an initial reference to the media.CREATING A DERIVED COMPONENTSo far we’ve chosen a base component from which to derive our customized component, and we’ve identified the routines we want to override. Now we’re ready to take the third step of writing a new component that targets the base component and overrides the identified routines. If you’re curious about the design of the generic derived component, you can investigate it on the CD. I’m only going to point out a couple of things about its design before moving on to discuss what you need to do to make your own derived component.To capture or not to capture. You have two possible approaches when deriving a component. First, you can simply open and target a component, which lets your component use the services of that component. The component is still available to other clients, but you’re using an instance of it. Second, in addition to targeting the component, you can capture it. The base component will then be replaced by your component in the component registration list and will no longer be available to clients (although current connections are retained). The CaptureComponent routine returns a special ID so that the captured component can still be used by your component.     We’ll use CaptureComponent because we want to replace the functionality of all instances of the text media handler (conceptually, you can think of capturing as patching). However, targeting without capturing is just as effective — and it has a few advantages: it doesn’t require you to keep track of the captured component’s ID, and it allows clients looking for a specific component to be successful. Let’s walk through the steps you’d take to make your own derived component using the generic code on this issue’s CD, which are the same steps used to create our text-speaking example. You need to make changes in specific places: the component resource, the global data file, the OpenComponent routine, and the override routines.Changing the component resource. The first thing to change is the resource file for the component. The essential part of this file is the component description, which is a structure that describes the component type, subtype, manufacturer, and flags. The Component Manager looks at this information when it’s handling an application’s request for a component. You want the right information here so that QuickTime will grab your derived component instead of the base component.You should change the component type and subtype to match those of the component you’re inheriting from. In our example, when a QuickTime movie with a text track is opened, QuickTime asks the Component Manager for a text media handler, which has type 'mhlr' and subtype 'text'. Since we want QuickTime to grab our derived component instead, we need to make its type and subtype the same. In our case, we have to change the component manufacturer to match that of the base component as well. This isn’t the ideal situation, because it would be most desirable for each component to have a unique manufacturer. But clients may look for a component of a specific manufacturer and won’t grab your derived component if its manufacturer is different. Because it would be better to be able to identify a derived     component, it’s strongly suggested that component clients always perform a default search, avoiding asking for specifics other than type and subtype.You may also need to set the componentFlags field, which identifies specific functionality for a component. For example, video digitizers use componentFlags to identify the type of clipping the digitizer performs, among other things. If you don’t know how a client searches for a component, you can find out by running that application and trapping on FindNextComponent. The last parameter pushed on the stack is the component description, and you can find its values in a debugger (see “Inside QuickTime and Component-Based Managers” in develop Issue 13). In our example, we know that QuickTime performs a simple type and subtype search for a text media handler, so we only have to change the type and subtype in the component resource.The global data file. The ComponentData.h file contains the declaration of the data structure for each component instance and the global component data structure. You’ll need to fill out a component description structure describing your chosen base component, which will be used to ask the Component Manager to find it.Now you’re left with defining the global data for your derived component. The generic capturing component on this issue’s CD has one item that’s shared across all its instances: a reference to the captured component. If you need data that’s shared across instances, declare it here, but in general you shouldn’t need it.The data local to each instance is allocated in the OpenComponent routine. By default, three component instances will be kept track of: a self copy, a delegate copy, and a target copy. These instances will be stored for you, and you won’t need to do any work. The target copy is the instance of a component that may capture yours. If your component calls itself, it should use this instance in case the target overrides the routine.    The other data that you allocate is specific to the type of your derived component. For our example, we’ll allocate room for a speech channel, a media reference, a handle to the text to be spoken, and a StdTTSParams structure, which is filled out by the Standard Text to Speech dialog. This dialog lets the user choose voice, pitch, and modulation. The OpenComponent routine. OpenComponent performs three major operations. First, it allocates storage for each instance. Second, it checks for QuickTime, the Text-to-Speech Manager, and other dependencies; if they’re not installed, the component can’t open and an error is returned. Note that software dependencies are checked here instead of in RegisterComponent to bypass possible load order conflicts. Finally, OpenComponent captures the Apple text media handler and stores a reference to it in the component globals.The override routines. Now it’s time to implement the override routines. You’ll need to get the selectors for the routines from the original component’s header file. In our example, we look at MediaHandlers.h and find the MediaInitialize routine. The selector has a constant, kMediaInitializeSelect. We need to make the parameters of our override routine match those of the MediaInitialize routine. pascal ComponentResult MediaInitialize    (PrivateGlobals **storage,    GetMovieCompleteParams *gmc)MediaInitialize performs these tasks: it stores the media reference from the GetMovieCompleteParams structure in our private storage; it queries the user for a voice with the Standard Text to Speech dialog; and, with this information, it allocates and sets up the speech channel.Next we implement the MediaIdle routine, which has a selector of kMediaIdleSelect. Our MediaIdle looks like this:    pascal ComponentResult MediaIdle    (PrivateGlobals **storage, TimeValue    atMediaTime, long flagsIn, long *flagsOut,    const TimeRecord *movieTime)This routine retrieves the media sample for the time passed in and then speaks it. The important parameter is atMediaTime, which contains the current time value of the media for the movie. We get the media sample for that time using GetMediaSample, and then we use the nifty new Text-to-Speech Manager to speak. In this case, we’ll use SpeakText, which takes three parameters: a speechChannel (allocated earlier in the OpenComponent routine), a pointer to the beginning of the text that we want to speak, and the length of the text. SpeakText is an asynchronous routine, so it won’t hold up processing (or the movie) while it speaks. On the other hand, the text can’t be disposed of until speaking is finished. To accommodate this requirement, a reference to the text is stored in our instance storage, and the text is disposed of when the component closes.LETTING USERS LINK AND UNLINK COMPONENTSThanks to dynamic linking, a large number of users can easily take advantage of new functionality provided by customized components. Three methods can be used to register and unregister components. First, a component is registered at system startup if the component resides in the System Folder, or in the Extensions folder of the System Folder. To unregister this component, a user can remove it and reboot. Second, an application can dynamically register      components as needed, and then unregister them when finished. Third, you can use the drag-and-drop applications Komponent Killer and Reinstaller II included on this issue’s CD. Using these applications, you don’t have to reboot. (Of course, your typical user won’t do it this way; this method is for you, the programmer.)EXCITING PROSPECTSNow you know how to customize a component using a derived component, which will be dynamically linked at run time and thus can extend systemwide functionality. Just think of the possibilities! You can override the movie controller and implement an Apple event handler. And you can override other base components as well. Fiddle around with the generic derived component on the CD to get an idea of the exciting prospects before you.    REFERENCES    •    “Somewhere in QuickTime: Derived Media Handlers” by John Wang, develop Issue 14.    •    “Inside QuickTime and Component-Based Managers” by Bill Guschwan, develop Issue 13.    •    “Techniques for Writing and Debugging Components” by Gary Woodcock and Casey King, develop Issue 12.    •    “Be Our Guest: Components and C++ Classes Compared” by David Van Brink, develop Issue 12.            FLOATING WINDOWS: KEEPING AFLOAT IN THE WINDOW MANAGERDEAN YUThese days having floating windows in an application is like having an air bag in a car; you’re not cool if you don’t have at least one. Because system software doesn’t support floating windows in the Window Manager, myriad floating window implementations abound, ranging from the straightforward to the twisted. This article presents a library of routines providing standard, predictable floating window behavior that most applications can readily use.Floating windows are windows that stay in front of document windows and provide the user easy access to an application’s tools and controls. Ever since the introduction of HyperCard, most Macintosh programmers have been in love with floating palettes and frequently use them. This would be fine if there were an official way to implement floating windows, but there is no such beast. This article offers a solution.Currently, the most popular way of implementing floating windows is to patch various Window Manager routines so that they behave correctly when floating windows are present. But patching traps has always been problematical. Patches often make assumptions about how a particular routine behaves or when it will be called. If system software or a third-party extension suddenly uses the patched routine where it has never been used before, compatibility problems can arise. Often, patches subtly alter the behavior of a routine — for example, by using a register or setting a condition code. This makes it difficult for Apple to extend (or even fix!) the Macintosh API and still maintain a high level of compatibility with existing applications.You can just as easily implement floating windows by avoiding the use of high-level Window Manager routines that generate activate events; instead, you can use lower-level routines almost exclusively. It’s much less likely that the code will break (or cause other code to break) when Apple makes changes to the system software. The reason for this is simple: it’s much less likely for system software engineers to change the fundamental behavior of a Macintosh Toolbox routine than it is for them to use that routine in some new and different way. Under this second implementation method, the application becomes a proper client of the Toolbox, using the routines that are available rather than trying to reengineer them. The floating windows library described in this article and provided on this issue’s CD follows this philosophy.STANDARD FLOATING WINDOW BEHAVIORDevelopers implementing floating windows should follow certain rules to ensure the “consistent user experience” that we’re always harping about. Don’t worry if there seem to be a lot of things to keep in mind; the routines in the library do most of the hard work for you.ORDER OF ON-SCREEN INTERFACE OBJECTSAs more and more things appear on users’ screens, it becomes very important to define a front-to-back order in which interface objects appear. This alleviates confusion and prevents the neophyte user from being scared away when things start flying thick and fast on the screen. Within an application, the order of windows and other on-screen objects from back to front should be as follows (see Figure 1):•    Document windows and modeless dialogs•    Floating windows•    Modal dialogs and alerts•    System windows•    Menus•    Help balloonsIf you thought that floating windows would be as far back as they are, you get a gold star. The rationale for putting modal dialogs in front of floating windows stems from the normal use of these windows: floating windows are most frequently used as tool palettes. The user picks a tool, color, or something similar from the palette and then performs an operation on the active document. When a modal dialog appears, the application needs more information from the user before it can proceed. The tools in the floating window should not be available because they can’t be used in the dialog.Incidentally, system windows are windows that can appear in an application’s window list but aren’t directly created by the application. These windows appear in front of all windows created by the application. Examples of system windows include notification dialogs, the PPC Browser, and input method windows.APPEARANCE OF FLOATING WINDOWSThe physical appearance of the HyperCard floating palette has become the defacto standard look for floating windows. The description of floating windows that follows Figure 1Order of Windows on a Screenis based on this look. There’s at least one popular program that uses the standard document window as a floating window. Don’t do this; it only confuses the novice user.Unlike document windows, floating windows are all peers of each other. That is, there’s no visual cue to the user of any front-to-back order unless the floating windows actually overlap each other; they all float at the same level. Because of this equality, the title bars of floating windows are almost always in an active state. The exception to this rule occurs when a modal window is presented to the user; since this type of window appears above floating windows on the screen, the background of the title bar of each visible floating window turns from its dotted pattern to white to indicate an inactive state (see Figure 2).A floating window can have a close box, a zoom box, and a title. The use of size boxes in floating windows is not recommended. The title bar of a floating window should be 11 pixels high or 2 pixels higher than the minimum height of the primary script’s application font, whichever is greater. The title of a floating window should be in the application font, bold, and its size should be the greater of 9 points and the smallest recommended point size for that script system. Floating windows should have a 1-pixel drop shadow that starts 2 pixels from the left and top of the window.Figure 2Active and Inactive States of a Floating WindowFLOATING WINDOWS AND CONTEXT SWITCHINGBecause floating windows are almost always in an active state, it would be very confusing to the user if floating windows were still visible when an application is placed in the background. (Imagine an active window lurking behind an inactive document window.) For this reason, when an application receives a suspend event it should hide any visible floating windows. Conversely, when the application receives a subsequent resume event, the floating windows that were hidden on the suspend event should be revealed.IMPLEMENTING FLOATING WINDOWS IN YOUR APPLICATIONNow that we’ve taken care of the formalities, we can get to the heart of the matter. This section explains the methodology used in creating the floating windows library routines included on this issue’s CD. (You can use these routines, or you can write your own using the same methodology.) First, we talk about handling activate events, which is the trickiest aspect of implementing floating windows. Then, we describe the API in the floating windows library and how you can use it in your applications.DEALING WITH ACTIVATE EVENTSThe most difficult part of implementing floating windows is dealing with activate events. You need to work around how the Window Manager generates these events and how the Toolbox Event Manager reports them to an application. The Window Manager was written under the assumption that there’s only one active window at any time; obviously, this is not true in an application that has floating windows. A corollary of this assumption is that the Window Manager generates only one deactivate event for every activate event. This model breaks down when a modal dialog appears in an application with floating windows: the modal dialog receives the activate event, but a deactivate event is necessary for all visible floating windows and the frontmost document window. If things were left up to the Window Manager, only the frontmost floating window would receive the required deactivate event.To avoid this problem, you shouldn’t use the Window Manager routines SelectWindow, ShowWindow, and HideWindow since they implicitly generate activate and deactivate events. In addition, you shouldn’t use SendBehind to move the front window further back in the pile of windows on the screen or to make a window frontmost, because that routine also generates activate events.Instead, use lower-level routines like BringToFront, ShowHide, and HiliteWindow to simulate the higher-level calls. Additionally, instead of dispatching activate events in your application’s main event loop, you should activate or deactivate a window as its position in the window list changes. Here’s how a replacement to SelectWindow might look (see “This Is Not Your Father’s Window Manager” for more information on this routine):pascal void SelectReferencedWindow(WindowRef windowToSelect){    WindowRef                 currentFrontWindow;    WindowRef                 lastFloatingWindow;    ActivateHandlerUPP     activateProc;    Boolean                     isFloatingWindow;    if (GetWindowKind(windowToSelect) == kApplicationFloaterKind) {        isFloatingWindow = true;        currentFrontWindow = (WindowRef) FrontWindow();    }    else {        isFloatingWindow = false;        currentFrontWindow = FrontNonFloatingWindow();        lastFloatingWindow = LastFloatingWindow();    }    // Be fast (and lazy) and do nothing if you don't have to.    if (currentFrontWindow != windowToSelect) {        // Selecting floating windows is easy, since they're always active.        if (isFloatingWindow)            BringToFront((WindowPtr) windowToSelect);        else {            // If there are no floating windows, call SelectWindow as in the            // good ol' days.            if (lastFloatingWindow == nil)                SelectWindow((WindowPtr) windowToSelect);            else {                // Get the activate event handler for the window currently in                // front.                activateProc = GetActivateHandlerProc(currentFrontWindow);                // Unhighlight it.                HiliteWindow((WindowPtr) currentFrontWindow, false);                // Call the activate handler for this window to deactivate the                 // window.                if (activateProc != nil)                    CallActivateHandlerProc(activateProc,                                    uppActivateHandlerProcInfo, currentFrontWindow,                                    kDeactivateWindow);                // Get the activate event handler for the window that's being                // brought to the front.                    activateProc = GetActivateHandlerProc(windowToSelect);                // Bring it behind the last floating window and highlight it.                // Note that Inside Macintosh Volume I states that you need to                 // call PaintOne and CalcVis on a window if you're using                // SendBehind to bring it closer to the front. In System 7,                 // this is no longer necessary.                SendBehind((WindowPtr) windowToSelect,                                 (WindowPtr) lastFloatingWindow);                HiliteWindow((WindowPtr) windowToSelect, true);                // Now call the window's activate event handler.                if (activateProc != nil)                    CallActivateHandlerProc(activateProc,                                        uppActivateHandlerProcInfo, windowToSelect,                                        kActivateWindow);            }        }    }}Activate events and the frontmost document window. Other cases that the Window Manager doesn’t handle well occur when the frontmost document window is closed or when a new document window is created in front of other document windows. If floating windows are present, these document windows don’t get the needed activate and deactivate events, since the application is essentially removing or creating windows in the middle of the window list. Your application needs to send the THIS IS NOT YOUR FATHER’S WINDOW MANAGER    You may have noticed that the SelectReferencedWindow routine doesn’t strictly define how to do certain things. There are two reasons for this. The first is the advent of PowerPC architecture. When you write code that has the potential of running on several different runtime architectures, it should be generic, especially if you don’t know what’s lurking on the other side of a procedure pointer. The 68000 and PowerPC architectures handle procedure pointers differently: on a 680x0 machine, a ProcPtr points to the entry point of a procedure, whereas on a PowerPC, a ProcPtr points to a routine descriptor. It would be nice if source code that calls procedure pointers didn’t have to worry about the proper calling convention for a particular platform and the proper magic would happen at the flip of a compile switch. The solution that we use in system software is the CallProcPtr macros defined in our interface files, which expand to different things depending on the platform we’re compiling for. For the     ActivateHandlerUPP (for Universal Procedure Pointer) type used in SelectReferencedWindow, the definitions shown below are needed.The second reason for generality in the code is the future. We would like to move the Macintosh operating system into the 1990s to get preemptive multitasking and separate address spaces. This means a move toward opaque data structures: accessor functions will be provided, so you won’t be able to access fields of a data structure directly. In the future, data structures like WindowRecords may no longer be created in your application’s address space, so you’ll get a reference to a window instead of an absolute address. The floating window API follows this philosophy; all calls take a WindowRef type instead of a WindowPtr, and all fields of a window’s data structure are accessed with an accessor function. This is all for the best. Really.    typedef pascal void (*ActivateHandlerProcPtr)(WindowRef theWindow, Boolean activateWindow);enum {   uppActivateHandlerProcInfo =    kPascalStackBased | kParam1FourByteCode | kParam2TwoByteCode };#if USES68KINLINEStypedef ActivateHandlerProcPtr ActivateHandlerUPP;#pragma parameter CallActivateHandlerProc(__A0)pascal void CallActivateHandlerProc(ActivateHandlerUPP activateHandler, WindowRef theWindow,                                                Boolean activateWindow) = 0x4E90; //jsr (A0)#define CallActivateHandlerProc(activateHandler, activateHandlerProcInfo, theWindow,      \                                            activateWindow)                                  \   CallActivateHandlerProc(activateHandler, theWindow, activateWindow)#elsetypedef UniversalProcPtr ActivateHandlerUPP;#define CallActivateHandlerProc(activateHandler, activateHandlerProcInfo, theWindow,      \                                            activateWindow)                                  \   CallUniversalProc(activateHandler, activateHandlerProcInfo, theWindow, activateWindow)#endif        right activate events to the right windows. The floating windows library routines ShowReferencedWindow and HideReferencedWindow generate the appropriate activate and deactivate events for you.Activate events and modal windows. When a modal window is to appear, you should send deactivate events to all visible floating windows and to the active document window. When the user dismisses the modal window, send activate events to those windows. Instead of overloading SelectReferencedWindow with yet another case, it’s easier to surround calls to Alert or ModalDialog with calls to deactivate and activate the floating windows and the first document window.Here’s what the code would look like:short PresentAlert(short alertID, ModalFilterProcPtr filterProc){    short alertResult;    DeactivateFloatersAndFirstDocumentWindow();    alertResult = Alert(alertID, filterProc);    ActivateFloatersAndFirstDocumentWindow();    return alertResult;}THE FLOATING WINDOW APIThe floating windows library supplies the routines and accessor functions described below. Each routine description tells how to use it in an application and, when necessary, describes its parameters in detail.The floating window API uses the WindowRef type in the place of a WindowPtr. This is in anticipation of the situation in which memory for a window’s data structure is no longer allocated in the application’s address space. (See “This Is Not Your Father’s Window Manager.”) At present, a WindowRef is interchangeable with a WindowPtr, and a parameter of type WindowRef can be passed to existing Window Manager routines. A typecast is needed because a WindowRef points to a structure that contains a WindowRecord plus other fields.Creating and disposing of windows. The routines described in this section — NewWindowReference, GetNewWindowReference, and DisposeWindowReference — should be used instead of NewWindow, GetNewWindow, and DisposeWindow. You can use these new routines for any type of window, not just floating windows. Note that you should use them together; for example, DisposeWindowReference should be used to dispose of any windows created by NewWindowReference or GetNewWindowReference.pascal OSErr NewWindowReference(WindowRef *windowReference, const Rect    *boundsRect, ConstStr255Param title, Boolean visible, WindowAttributes    attributes, WindowRef behind, long refCon, ActivateHandlerUPP    activateHandler);NewWindowReference creates a floating window, document window, or dialog window. On machines with Color QuickDraw, it creates a color window; on machines without Color QuickDraw, it creates a window with a black-and-white grafPort.The windowReference parameter returns a reference to the new window. If a window could not be created, nil is returned. The boundsRect, title, visible, and refCon parameters are identical to the parameters you would normally pass to NewWindow or NewCWindow.The behind parameter specifies the window that the new window should be created behind. It’s similar to the behind parameter that’s passed to NewWindow, except that -1 has the following special meaning: if a floating window is being created, -1 means the new window will be created in front of all other windows; if a document window is being created, -1 means the new window will be created behind any existing floating windows.Unlike NewWindow, which establishes an appropriate WDEF resource based on the window definition ID passed as a parameter, NewWindowReference establishes an appropriate window definition function based on the attributes parameter, which describes the desired physical attributes. The following values have been defined for the attributes parameter:enum {    kHasCloseBoxMask =                 0x00000001,    kHasZoomBoxMask =                 0x00000002,    kHasGrowBoxMask =                 0x00000004,    kHasModalBorderMask =             0x00000010,    kHasThickDropShadow =             0x00000020,    kHasDocumentTitlebarMask =     0x00001000,    kHasPaletteTitlebarMask =     0x00002000,    kHasRoundedTitlebarMask =     0x00004000,// Attribute groupings    kWindowGadgetsMask =            0x0000000F,    kWindowAdornmentsMask =        0x00000FF0,    kWindowTitlebarMask =            0x000FF000,};typedef unsigned long WindowAttributes;The values of the attributes parameter can be combined, except only one title bar value can be used. For example, kHasCloseBoxMask + kHasZoomBoxMask + kHasGrowBoxMask + kHasDocumentTitlebarMask describes the appearance of a standard document window.Finally, the activateHandler parameter is a pointer to the routine that’s called whenever the window is activated or deactivated. You should always supply this routine, because the main event loop doesn’t receive activate events when the floating windows library is used. Activate event handlers have the following prototype:pascal void (*ActivateHandlerProcPtr) (WindowRef theWindow, Boolean    activateWindow);The theWindow parameter is the window that should be activated or deactivated. The activateWindow parameter specifies whether the window should be activated or deactivated: true means activate, false means deactivate.NewWindowReference can return the following errors:•    kUndefinedTitlebarTypeError: Invalid values in the attributes parameter, or more than one title bar attribute is specified in the attributes parameter.•    kWindowNotCreatedError: Not enough memory to create the window.•    kInvalidWindowOrderingError: The behind parameter specifies creating a floating window behind an existing document window, or a document window in front of a floating window.pascal OSErr GetNewWindowReference(WindowRef *windowReference, short    windowResourceID, WindowRef behind, ActivateHandlerUPP    activateHandler); GetNewWindowReference creates a window based on a resource template. On machines with Color QuickDraw, it creates a color window. On machines without Color QuickDraw, it creates a window with a black-and-white grafPort.The windowReference parameter returns a reference to the new window. If a window could not be created, nil is returned. The windowResourceID parameter is the resource ID of the WIND resource that describes the window. The visible field in the WIND resource should be false.The behind parameter specifies the window that the new window should be created behind. As in NewWindowReference, if -1 is specified for this parameter, document windows are created behind any existing floating windows.GetNewWindowReference can return the following errors:•    kWindowNotCreatedError: Not enough memory to create the window, or the specified WIND resource cannot be found.•    kInvalidWindowOrderingError: The meaning of this is the same as for NewWindowReference.pascal void DisposeWindowReference(WindowRef windowReference);DisposeWindowReference frees the memory used by a window created with NewWindowReference or GetNewWindowReference.Displaying windows. The routines described in this section affect how windows look and how they’re ordered on the screen.pascal void SelectReferencedWindow(WindowRef windowToSelect);SelectReferencedWindow replaces SelectWindow; it brings a window as far forward as it should come when the user clicks in it. Selecting a floating window makes it the absolute frontmost window on the screen. Selecting a document window makes it the frontmost document window, but it remains behind all floating windows.pascal void HideReferencedWindow(WindowRef windowToHide);HideReferencedWindow replaces HideWindow to hide a window. As in HideWindow, if the frontmost window is hidden, it’s placed behind the window immediately behind it, so when it’s shown again, it will no longer be frontmost. This is also true for document windows even if floating windows are visible.pascal void ShowReferencedWindow(WindowRef windowToShow);This routine replaces ShowWindow to make a hidden window visible again. If the window is frontmost when it’s shown, the previously active window is deactivated.pascal void DeactivateFloatersAndFirstDocumentWindow(void);Before presenting a modal window to the user, applications should call this routine to unhighlight any visible floating windows and the frontmost document window, and to send deactivate events to these windows. At this point, all visible windows in the window list can be treated as normal windows, and the modal dialog or alert can be brought up with the traditional calls.pascal void ActivateFloatersAndFirstDocumentWindow(void);After the user dismisses a modal window, the application should call ActivateFloatersAndFirstDocumentWindow to restore the highlight state of any visible floating windows and the frontmost document window. This routine also sends an activate event for each of these windows. When called in the background, ActivateFloatersAndFirstDocumentWindow hides any visible floating windows by calling SuspendFloatingWindows.pascal void SuspendFloatingWindows(void);When an application with visible floating windows receives a suspend event, it should call SuspendFloatingWindows to hide its floating windows. This routine remembers the current visibility of a floating window so that only the current visible floating windows are revealed on a subsequent call to ResumeFloatingWindows. If a movable modal dialog is frontmost when this routine is called, floating windows are not hidden because the application is in a modal state. However, if the dialog goes away while the application is in the background, the floating windows will be hidden automatically because ActivateFloatersAndFirstDocumentWindow calls SuspendFloatingWindows. pascal void ResumeFloatingWindows(void);Applications should call ResumeFloatingWindows when a resume event is received. Any floating windows that were visible when SuspendFloatingWindows was called are made visible again. ResumeFloatingWindows also activates the frontmost document window.Utility routines. These routines provide all the other functions an application might need to operate smoothly with floating windows.pascal ActivateHandlerUPP GetActivateHandlerProc(WindowRef theWindow);GetActivateHandlerProc returns a pointer to the routine that handles activate and deactivate events for the specified window. If the window doesn’t have a handler routine, GetActivateHandlerProc returns nil.pascal void SetActivateHandlerProc(WindowRef theWindow, ActivateHandlerUPP    activateHandlerProc);SetActivateHandlerProc sets a new routine to handle activate and deactivate events for the specified window. It replaces any existing handler routine for this window.pascal void DragReferencedWindow(WindowRef windowToDrag, Point startPoint,    const Rect *draggingBounds);DragReferencedWindow drags a window around, ensuring that document windows stay behind floating windows. Like DragWindow, DragReferencedWindow doesn’t bring a window forward if the Command key is held down during the drag.pascal WindowRef FrontNonFloatingWindow(void);FrontNonFloatingWindow returns a reference to the first visible window that’s not a floating window. Usually, this is the first visible document window. However, if a modal dialog is visible, it returns a reference to the dialog window.pascal WindowRef LastFloatingWindow(void);LastFloatingWindow returns a reference to the floating window that’s furthest back in the window list, whether it’s visible or not. Normally, the floating windows library uses this routine internally, although applications can use it to determine where the floating window section of the window list ends. If there are no floating windows in the window list, LastFloatingWindow returns nil.Hangin’ with the Get/Setters. In an effort to move toward more flexible and architecture-independent data structures, the library includes routines that get and set several WindowRecord fields. The library supplies the accessor functions only for the fields the floating window routines need to get at, however. The ambitious reader can also create accessor functions for the other WindowRecord fields that aren’t provided by the floating windows library. Accessor functions have been provided for these fields: windowKind, visible, hilited, strucRgn, and nextWindow.THE SAMPLE PROGRAM AND THE SOURCEOn this issue’s CD, there’s a floating windows program that doesn’t do much more than exercise the routines from the floating windows library. It shows how floating windows interact with other types of windows, including alerts, movable modal dialogs, and document windows. The floating window definition procedure on the CD is taken from one of the many game programs I’ve never finished; it works well enough for demonstration purposes, although anyone can write a better one.The complete MPW C source for the floating windows library is in the files WindowExtensions.c and WindowExtensions.h. This code was written so that most applications could start using the routines with a minimum of effort. (You may have to change the resource ID of the floating window WDEF that’s defined in WindowExtensions.h.) Just remember that your mileage may vary.SEAT CUSHIONS AND OTHER FLOTATION DEVICESOK, I admit it. I did have a private agenda when I set out to write this article. The way I figure it, for every application developer I convince to implement floating windows without patching traps, I save myself a few hours in MacsBug. The most compelling argument I could think of was to write the code for the floating windows library routines so that no one else would have to. If you use the supplied library routines, you don’t have to worry about any of the details on how floating windows behave, and you can concentrate on making your applications the envy of all your friends who use Windows. The floating windows library described in this article isn’t the be-all and end-all of floating windows. The THINK Class Library and MacApp — as well as AppsToGo in the Sample Code folder on the CD — provide support for floating windows within an entire application framework. The floating windows library presented here has the advantage of being a standalone library that can be linked into your home-grown application. For the stout of heart who want to implement their own floating windows, this article lays out a road map of the gotchas and pitfalls in creating floating windows on top of the Window Manager. I touched briefly on making source code more platform independent. As Apple takes the Macintosh experience cross-platform, there’s a big potential for source code maintenance to become hellish as different machine architectures create subtle differences in the runtime environment. By factoring out assumptions about data structures and the underlying chip architecture, your applications can move cross-platform more quickly and less expensively. The API of the floating windows library hints at what the Toolbox will look like in a few years time. While I can’t predict when the Window Manager will finally support floating windows, use of the API described in this article will make for a smoother transition when that day finally comes.WORKING IN THE THIRD DIMENSIONJAMIE OSBORNE AND DEANNA THOMASMacintosh users have a lifetime of experience seeing and manipulating objects in three dimensions. Many developers are taking advantage of this experience by adding three-dimensional elements to their human interfaces. 3-D effects can heighten the ease of use, realism, and visual appeal of your application. This article discusses why 3-D effects add value to Macintosh applications and describes an easy way to add 3-D effects to applications created with MacApp.Three-dimensional effects can add life to any user interface. A 3-D interface is inviting to users. It offers them tactility and can make the user interface elements they work with stand out. When implemented correctly, the 3-D interface helps users differentiate between the important contents of a window and the background. The result is a friendlier, more accessible interface to your application.This article tells you about some basic 3-D design principles that you can use and describes one way to implement them. The accompanying code on this issue’s CD contains a set of adorners and classes that make it easy to bring your MacApp applications into the third dimension.WHY A 3-D LOOK?Developers have been adding color and 3-D buttons to their products for a couple of years now. Users like 3-D effects not only because they’re nicer to look at but also because they help define user interface elements within the workspace. There’s a clear message that both users and developers want 3-D effects, and developers aren’t holding off until Apple provides guidelines and tools to implement them.We’ve seen many developers come up with their own implementations of gray windows and 3-D buttons. Even within Apple there are several ideas about what a 3-D user interface should look like. Although this article doesn’t present an official Apple 3-D interface, it does describe designs and approaches that we developed while implementing a 3-D interface and that we think can help you with your own 3-D interface design.THE 3-D LOOKIn our three-dimensional look, windows have a light gray background instead of the standard white background. Darker shades of gray and white on the edges of user interface elements give the illusion that some elements are chiseled into the background while others appear in bas-relief.There are two special cases: Modal dialog boxes (windows with the definition ID of dBoxProc) have a gray background, but do not have the chiseled effect because the color version of the window already has a 3-D border. Scrollable document windows (definition ID of documentProc) do not have a gray background at all.The 3-D look offers the user two advantages. First, it creates a clearer work environment. White interface elements, such as text fields, checkboxes, and pop-up menus, stand out from the light gray background and call attention to themselves. The chiseled appearance, though subtle and unobtrusive, effectively communicates the division of elements within the window.The second advantage to the 3-D look is that it lets the user work on a more tangible, tactile surface. The chiseled look gives strong clues that invite interaction. The slight depression of text fields, for example, invites the user “into” the field to edit text. The shading around buttons makes them look as if they project slightly from the gray background. This makes buttons appear pressable, and they react appropriately when the user clicks them. Our implementation of these elements strives to maintain the crisp, clean graphical elegance that the Macintosh is known for.The background gray we use for windows is the lightest gray in the Macintosh palette. Its RGB value is 61166, 61166, 61166 (hex 0xEEEE). In small areas, this gray is subtle; it appears to be darker in large areas that have only a few text fields or other graphical elements.Chiseled lines define the edges of windows, text fields, and checkboxes. They also help group related items within a window. To create a chiseled effect on the light gray background, use white and the fourth gray value from the Macintosh palette. The RGB value of this medium light gray is 43690, 43690, 43690 (hex 0xAAAA). The way you use these colors determines whether an object comes toward the user or recedes into the background.To chisel an object into the gray background, use gray shading on the object’s top and left edges and white on its bottom and right edges. To make an object project from the gray background, reverse the order: use white on the top and left edges and gray on the bottom and right edges. Note that the color of the top and left edges, whether white or gray, always extends to the far corner pixels. Figure 1 shows both kinds of shading.Figure 1Shading Items for 3-D EffectsIf you keep in mind that the imaginary light source on the desktop comes from the upper left corner of the screen, you can always determine where to place the highlight and shadow colors.In windows, the background itself should appear to come forward by one pixel. To create this effect, draw a white line on the top and left edges of the window and a gray line on the bottom and right edges. Figure 2 shows a window with the background drawn this way and a scrolling list chiseled into the background.Figure 2A Window With 3-D EffectsThough these chiseled effects are subtle, they do give a sense of depth, even if it’s almost subliminal in some cases. Remember, we don’t want to hit anyone over the head with these graphical enhancements. The goal is to add elegance and ease of use to the work environment, not to scream out “Look at me!”ICON BUTTONSIcon buttons are buttons that use graphics to describe what they do. The page orientation controls in the standard Page Setup dialog box are good examples of early icon buttons. One of the great things about icon buttons is that they give pictorial clues at a glance. The user can usually understand what the buttons do from the way they’re clustered and from their surrounding context. Another advantage of icon buttons is that they’re more accessible and easier to see than menu commands. This makes icon buttons ideal for frequently used commands.It’s very easy to create poorly designed icons. If you decide to use icon buttons in your application, take the extra time to do plenty of user testing to make sure your users think your icons mean what you think they mean. This is especially important if you decide not to use text labels for your buttons.Our icon buttons are square or rectangular, and the button is a slightly darker shade of gray so that it’s easily distinguished from the light gray background. The illusion of height invites the user to press a button. Figure 3 shows a few examples of icon buttons.    Grayscale    Black and whiteFigure 3Some Icon ButtonsBecause icon buttons are dynamic elements with specific characteristics, they need to maintain a distinct appearance even in black and white, just as checkboxes and radio buttons do. On a black-and-white screen, we use a 50% dither pattern along the bottom and right edges of an icon button to give the button height (see Figure 3). When the user clicks the button, the entire button inverts, maintaining a subtle 3-D look.To achieve a consistent 3-D effect, our icon buttons follow certain guidelines. We always use a 2- to 3-pixel margin between the icon boundaries and the edge of the surface of a button. The frame and shading that give the icon button its 3-D appearance extend four pixels in each direction. Figure 4 shows a closeup of an icon button’s shading.When you design your icon buttons, don’t forget the additional pixels that you’ll need for the shading. If you want to use a 32 x 32 icon in a button, the minimum button size is 40 x 40. If you want the entire button, including its shading, to fit in a 32 x 32 space, the icon should fit in roughly a 22 x 22 area so that it sits comfortably within the button.Figure 4Icon Button DetailAs you design your icons, try to keep the image as free form as possible. In general, the image shouldn’t follow the outline of the button. A square icon can hide the appearance of a square button and diminish the 3-D effect when the user presses the button. The more free form the image, the clearer it is within the button. The icon buttons in Figure 3 are good examples of free-form images.Our icon buttons can appear in one of three states: available, selected, and unavailable. Figure 5 shows what these states look like.•    In the available state, the button shows the full 3-D shading, and its icon is displayed in the normal way. When the user clicks the button, it goes into the selected state.•    In the selected state, the button and its icon darken, similar to a selected icon in the Finder. Since it’s a 3-D image, the shading changes to make the icon recede into the surface, giving the impression that it’s pushed in. If the button behaves like a radio button, it stays in this state until the user selects a different button. If the button behaves like a push button, it pops back out when the user releases the mouse button. •    In the unavailable state, meaning the operation that the button represents is not available, the entire button is dimmed to make it appear flat against the surface. When the user takes some action that makes the button’s operation available, it changes to the available state.Figure 5Icon Button StatesYou can change the icon in the button depending on context. Dynamic buttons give the user visual information about what effect the operation will have. For instance, suppose you have a list that can show user names, folders, and documents at the same time. When the user selects a folder or a document from the list, the icon button for the Open operation displays a folder icon or a document icon; the folder case is shown in the window on the left in Figure 6. When the user selects a user name from the list, the button changes to display the standard user face icon, as shown on the right in Figure 6.Figure 6A Window Containing a Dynamic ButtonYou need to be especially careful when designing dynamic icon buttons. While the image in the icon may change to specialize the button, you don’t want to change the meaning of the button. Changing the icon from open folder to open document is useful, but changing the meaning of the button from “open item” to “quit application” would confuse the user. THE NAUGHTY BITSThis issue’s CD includes code that makes it easy for you to add these 3-D effects to your MacApp application, and includes a sample application, with source code, that shows you how to use the code. There are some adorners for drawing gray backgrounds and chisels in windows and around text and list boxes, 3-D versions of TControls such as T3DCheckBox and T3DRadio, and two C++ stack-based objects to help with drawing. The code requires MacApp 3.0.x and the resulting application requires System 7. The 3-D adorner classes on the CD are TGrayBackgroundAdorner, T3DGrayBackgroundAdorner, TWhiteBackgroundAdorner, T3DFrameAdorner, T3DLineTopAdorner, T3DLineBottomAdorner, T3DLineLeftAdorner, and T3DLineRightAdorner. The 3-D TControl classes are T3DButton, T3DCheckBox, T3DRadio, and T3DIconButton. The easiest way to incorporate the 3-D adorners and classes into your application is to use a view editor, such as AdLib or ViewEdit. Attach the adorners to your views the same way you would attach any other adorner. For best performance, insert the line adorners after the Draw adorner in the view’s adorner list. One of the background adorners should replace the Erase adorner (before the Draw adorner) in your window’s adorner list. For the classes, create a control 'View' resource of the type you want, and insert “3D” into the name. For instance, TCheckBox becomes T3DCheckBox, TRadio becomes T3DRadio, and so on. T3DIconButton is an exception because there is no TIconButton class. To create a T3DIconButton, you’ll need an icon suite ('ICN#' resource). Next, create a TControl and change the class name to T3DIconButton. Then, set the user value of the T3DIconButton to the ID of the icon suite. If you install the adorners or classes this way, be sure to call InitU3DDrawing in your initialization code so that the linker doesn’t dead-strip any adorners that you don’t explicitly reference in your code. Another way to use the adorners is to create them procedurally and use the AddAdorner method to add them to a view. If you do it this way, you can create a single global instance of each adorner you intend to use and pass a pointer to the global adorner when you call AddAdorner. MacApp uses this technique for the common adorners such as TDrawAdorner and TEraseAdorner. You may still want to call InitU3DDrawing in your initialization function in case you decide to use the first method for some of your views. You can create the 3-D classes (such as T3DCheckBox and T3DRadio) procedurally as you would any other MacApp view.STACKING THE DECK IN YOUR FAVORThe MacApp classes on the CD use two C++ stack-based objects to help you draw the 3-D effects. CGraphicsState objects save and restore the drawing state, and CDrawPerDevice objects let you customize your drawing routines for different pixel depths. For more information on stack-based objects, see “Stack-Based Objects.” When a drawing routine changes the graphics state, as most of the 3-D adorners and classes do, it’s a common courtesy to restore the state to the way you found it when your routine is done. CGraphicsState saves important characteristics of the graphics state, such as the foreground color, the background color, the pen state, and the text style. All you have to do is declare an instance of a CGraphicsState in your function’s local variable list, and forget it. C++ takes care of everything else, as in the following example.STACK-BASED OBJECTS        Stack-based objects are a powerful feature of C++ that lets you use function scope to perform routine actions in your code. They work because of constructors and destructors. To create a stack-based object, create a C++ class with a constructor and a destructor. In the constructor, add the code that you want to execute when an instance of the object is created. For example, the constructor can save the graphics state, set the cursor to a watch, or lock down handles. In the destructor, reverse the process: restore the state, reset the cursor, or unlock the handles.Since the object is created on the stack as a local variable, C++ frees the memory it occupies when the function ends. But before the object is freed, its destructor executes.    The CGraphicsState class is a simple illustration of this technique. When you declare an object of type CGraphicsState, the constructor saves the graphics state in the object’s data members. When the function ends, and the destructor is called, it restores the graphics state from its saved data.In theory, you can use the constructors and destructors of stack-based objects to do anything you want; in practice, you have to be careful. Obviously, your destructor should reset any changes that your constructor made, so it’s important that they’re in sync. If your constructor allocates memory, you should be prepared to handle a failure. Since constructors can’t return a value, you’ll need to provide some way to find out whether the operation was successful.    MyClass::DrawIt() {    short             aLocal;    CGraphicsState  theGState;    . . .    // Do some drawing.    . . .}When the function ends, CGraphicsState’s destructor restores the graphics state. Sometimes you want your drawing routine to behave differently depending on the pixel depth of a monitor. Our stack-based object, CDrawPerDevice, lets you specify how your drawing routine should react to monitors with different pixel depths. CDrawPerDevice performs the same function as the DeviceLoop routine (see the article “DeviceLoop Meets the Interface Designer” in develop Issue 13), but CDrawPerDevice is easier to use with MacApp. To use the DeviceLoop routine with C++ or with Object Pascal, you need to create a static drawing routine that you can pass to DeviceLoop. Since you can’t make the Draw method of a TView subclass static, you need to create a second drawing function. If you had to do this for all your drawing classes, it would get messy and wasteful. CDrawPerDevice doesn’t require static draw routines.  To use CDrawPerDevice, declare an instance of it and initialize it with a CRect that specifies the QuickDraw drawing area. Then do your drawing in a while loop that calls CDrawPerDevice::NextDevice, like this: MyClass::DrawIt(VRect area) {    CGraphicsState      theGState;     CRect                  aQDArea;    short                  pixelSize;    this->ViewToQDRect(area, aQDArea);    CDrawPerDevice device(aQDArea);    while (device.NextDevice(pixelSize)) {        if (pixelSize > 2) {            // Do some color drawing.            this->DrawColor();        }        else {            // Do some black-and-white drawing.            this->DrawBW();        }    }}Note that you create actual instances of CGraphicsState and CDrawPerDevice on the stack (that is, as local variables in the function). Don’t instantiate pointers to these objects.  Correct        IncorrectCGraphicsState     myState;    CGraphicsState     *myState;CDrawPerDevice    drawing(aQDArea);    CDrawPerDevice    *drawing;        new drawing(aQDArea);DECORATING YOUR WINDOWS WITH ADORNERSAn adorner is a handy class that MacApp uses to draw views. Instead of putting special drawing code in the Draw method of a class, you can use an adorner to do the drawing for you. For example, a line adorner might draw a single black line along the top edge of a view. You can create an adorner to draw something, like a line, and then add it to any view you want. The basic 3-D adorner is TGrayBackgroundAdorner. As you might have guessed, it colors the background of its view gray. This adorner calls EraseRect on the viewRect  with kLightGray. Using EraseRect instead of PaintRect in gray has a useful side effect: because any view without an explicit TDrawingEnvironment inherits the foreground color and the background color from its superview, all subviews of a view with a TGrayBackgroundAdorner will erase with gray by default. This is especially important when you have TStaticText items. Without the gray TDrawingEnvironment they inherit, they would draw ugly white boxes around the text. T3DGrayBackgroundAdorner is a subclass of TGrayBackgroundAdorner that adds the chiseled effect described earlier in this article. Its Draw routine first calls the inherited method, which fills the viewRect with kLightGray. Then it draws the gray and white lines around the edges. These lines are not drawn if the monitor is in black-and-white mode. To draw a chiseled gray line that appears as a black line in black-and-white mode, use T3DLineTopAdorner, T3DLineLeftAdorner, T3DLineBottomAdorner, or T3DLineRightAdorner. The T3DFrameAdorner, used for TEditText and list views, is an interesting case. Unlike the other frame adorners, which tend to draw a one-pixel-wide line around your view or portions of your view, T3DFrameAdorner draws two-pixel-wide lines to achieve its 3-D effect. This isn’t a problem for TEditText, but it means that you need to inset your TListView two pixels from the TView or TControl that encloses the TListView. Then add the T3DListFrameAdorner to the enclosing TView instead of the TListView. You should also add a TWhiteBackgroundAdorner to your list view or edit text (before the Draw adorner) so that the text appears on a white background. Another way to get the same effect is to set the drawing environment background for the list view or edit text to white. Note that the 3-D adorners draw the chiseled effect only on devices whose pixel depth is 2 or more. None of the 3-D adorners described here, except the line adorners described above, show up in black and white. This decision to hide 3-D effects in black and white follows the Macintosh Human Interface Guidelines recommendation that applications not try to simulate 3-D effects in black and white. TO STAY IN CONTROL YOU HAVE TO HAVE CLASSIt would be nice if you could give 3-D effects to controls simply by adding adorners. To do it that way, you would need to draw over the CDEF. This is not a recommended programming practice, since CDEFs may change, or a user might have installed a special CDEF such as Greg’s Buttons. Any assumptions your adorner makes about the way a control looks may turn out to be false. That’s why we use MacApp classes instead of adorners to handle the drawing of 3-D controls.The 3-D control classes are still easy to use because they inherit from their 2-D ancestors. On 1-bit devices, the 3-D classes simulate the standard two-dimensional CDEF drawing. Since icon buttons need to maintain a distinct button appearance even in black and white, T3DIconButton does simulate a 3-D effect even on 1-bit devices. The text for checkboxes, radio buttons, and regular push buttons is normally drawn on a white background because that’s the way the System CDEF works. The TControl subclasses change the effect to draw on a gray background and, where appropriate, to add a 3-D effect. T3DCheckBox, for example, draws black text on a gray background and adds the chiseled effect to the checkbox itself. You can customize the drawing colors by setting the fForegroundColor and fBackgroundColor fields. You can use two different kinds of 3-D buttons: T3DButton, descended from MacApp’s TButton, and T3DIconButton from our code. Class T3DButton just inherits from TButton to draw in 3-D. Class T3DIconButton uses the TIconSuite class and icon suites ('ICN#' and 'ics#' resources) to draw icon buttons. T3DIconButton uses CDrawPerDevice to draw buttons differently on monitors set to different pixel depths. For example, if you’re drawing on a 4-bit monitor, T3DIconButton uses the 'icl4' or 'ics4' resource for your icon, but if you’re drawing on an 8-bit monitor, it uses 'icl8' or 'ics8'. Also, instead of inverting the icon when the button is hit, T3DIconButton masks the icon with the kSelected mask just as the Finder does. ADDING THE 3-D CLASSES TO YOUR MACAPP APPLICATIONHere’s how you add the 3-D adorners and 3-D control classes to your MacApp application:1.    Drag the files in the 3D Drawing folder on the this issue’s CD to your project folder.2.    Edit your MYourApp.cp file as follows: In main, add “extern InitU3DDrawing();” after your includes, and add “InitU3DDrawing();” where the other initialization routines are.3.    Edit your YourApp.MAMake file to include the files you added from the CD. The Demo3D.MAMake file is a good example of how to do this.WHY BOTHER WITH A THIRD DIMENSION WHEN WE HAVE TWO PERFECTLY GOOD ONES?“So,” you ask, “why should I bother with all this stuff? Does it really make my application any easier to use?” The answer is: probably. There have been no studies that definitively prove a 3-D interface is better than a 2-D interface. What we hear is a cry for more 3-D elements in the Macintosh interface. The subtle effects described in this article are enough to add depth and tactility to the workspace. This results in ease of use and clarity of view for the user. It’s also a lot more fun without being distracting.“Why not just use a custom CDEF like Greg’s Buttons?” The 3-D effects from this article weren’t created arbitrarily. They reflect a lot of work done to date by some of Apple’s visual designers. CDEFs are also more difficult to write than adorners and TControl subclasses. Furthermore, CDEFs define only the way controls are drawn. You can’t use a CDEF to create a chiseled effect and a gray background for your windows, for example.“This all looks great with MacApp, but what if I’m using something else?” There’s nothing intrinsic about the 3-D effects that makes them difficult to implement in any application framework. We chose to use MacApp because it made sense for our work. You could easily adapt these techniques to fit the framework you’re using.We hope that someday 3-D will become the rule, and that it will be just as easy to make a window three dimensional as it is now to make it colorized. Until then, the methods we’ve described in this article should save you time and frustration when making your applications 3-D. And we’re confident that those who use your applications will appreciate and benefit from your effort. VIEW FROM THE LEDGE        TAO JONESThe brain trust that makes up the heart, soul, and spleen of develop recently got together to have a few beers, pat each other on the back in a team-building-while-not-being-too-aggressive way, and just generally — as Albert Einstein once said — “figure it all out.”Two interesting things came out of the meeting. First, it’s very difficult to pat each other on the back in a team-building-while-not-being-too-aggressive way after you’ve had a couple of beers; and second, develop has a serious flaw. A flaw as wide, as gaping, and as socially repugnant as the space between Alfred E. Neuman’s teeth.As by now I’m sure you’ve discovered, develop is the best source for “how to” articles on Apple technology. It’s the literary equivalent of an overprotective older brother in a strange neighborhood. Yet all those back issues of develop, combined with that big stack of CDs you save but never use, are doing nothing to help you survive in the day-to-day workplace. You may be able to write C++ in your sleep, but it’s not going to do you any good if you don’t know socially important things like who your company’s CEO is or the finer points of water cooler etiquette. The raw philanthropic nature of this journal, combined with the necessity to fill a couple of extra pages, compels us to offer some useful office survival tips along with the gripping technical articles develop has always delivered.    From this point forward for eternity (or until I’m fired, or until the hate mail reaches unbearable levels), I’ll be your tour guide through the political jungle of the modern office. Like any good companion, I’ll be pointing out the nasty baboons from the safety of our digital van, helping you step around the virtual guano while we roam the electronic terra firma, bellowing at you when you try to feed your little sister to the lions, and pretending to know what I’m talking about when I don’t have a clue.To offer the ultimate in customer service, and to provide snappy repartee, I’ll be answering questions sent in by inquisitive readers and hand-picked by our crack staff. Rest assured your questions will be held in the utmost confidence, unless they have good blackmail potential. Everyone “fortunate” enough to have their questions printed will receive an incredibly cheap, yet heartwarmingly collectible, gift. Interestingly enough, questions arrived even before this column was announced. Leaks are everywhere, I guess.Dear Tao,As a product manager at a major U.S. software company, I often find myself losing in negotiations with my colleagues for our company’s internal resources. I always go into meetings prepared and well rehearsed, and I always come out with less than I’d hoped for. The situation is growing desperate. I have yet to be promoted, and I’m afraid I’ll need to call in the loans I’ve made to my children so I can pay off my BMW.Please help,Distressed in DenverDear Distressed,You say you’re a product manager yet you got your point across in fewer than ten pages. My guess is you’re being too direct with people in the workplace. A rule of     thumb: When dealing with people in the workplace, never be direct.There are several disadvantages to saying what’s on your mind. One is that people will know what you’re thinking. If you’re dealing with someone who isn’t direct, they’ll automatically have an edge on you; they’ll know what you know, but not vice versa. If you’re dealing with someone who is truly malevolent — the kind of person who bites the heads off marshmallow bunnies before eating the rest, or worse, someone who wears suspenders — your directness can be very detrimental to what you’re trying to accomplish. As you’ve already learned, being direct can be especially harmful when dealing with management. Let’s say you have some idea that you present honestly and forthrightly to your boss. When your boss responds with, “It basically seems like a good idea; let’s see if we can work something out,” what this really means is you’re heading straight into a nightmare commonly referred to as “negotiation.” This is bad news in a big way, because Boss School has taught your manager to (1) verbally whittle your idea into a headless monstrosity doomed for failure, and then (2) either take credit for your superhuman struggles in making the plan succeed or, more likely, crucify you mercilessly for failure.Just like everything else in the ’90s, the answer to your problem lies in a combination of inner awareness, macrobiotic diets, shaky mutual funds, and self-help. Not being direct will seem unnatural at first, so I give you this as your homework: Put a marble on a table. Study it closely until you really begin to understand what that marble is all about. Then, for the next half hour, describe the marble without using the words “round” or “sphere.” Once you think you’ve got it, ask some friends in and describe the marble to them. If they have no idea what you’re talking about, you’ll know that you’re well on your way to honing one of the most important of your office survival skills.As for calling in those loans from your children: Mom, I told you that I’d pay you back when I got a chance.    Dear Tao,I have an employee who is perpetually late and always uses the excuse “my dog got loose.” I’ve always been a bit suspicious, and upon checking I discovered that he doesn’t even own a dog! What should I do?Sign me,Flea-BittenDear Flea,As a manager you’re probably already aware that chronic lateness is usually only a symptom of some bigger underlying problem. Situations like this are sensitive, extremely volatile, and prone to disaster if not handled by properly trained professionals.First, you should make a detailed account in writing of all the incidents as they happen. Then call both the local animal shelter and the police department, stating that you believe one of your employees is running an illegal dog-racing operation. Don’t forget to mention that you think it’s likely your underling will “do something” (make sure to use that exact phrase) with the dogs if he finds out that the authorities are after him. As you watch events unfold, it may seem like a painful and arduous process. But believe me, once it’s all over, your employee will be so choked with emotion that he won’t be able to find the words to thank you.    RECOMMENDED READING AND LISTENING    •    Gojiro by Mark Jacobson. The autobiography of everyone’s favorite Japanese monster.    •    Cool Tricks by John Javna. It’s high time you learned how to tie balloon animals, isn’t it?    •    Dead Man’s Party by Oingo Boingo. Play it loud, and when your boss comes in, say “It’s symbolic.”    MACINTOSH Q & A Q    Will QuickDraw and QuickDraw GX coexist, or will QuickDraw GX replace QuickDraw?A    QuickDraw isn’t leaving with the introduction of QuickDraw GX. It’s here to stay. Among other reasons, QuickDraw functions are used extensively by the Macintosh Toolbox and applications. For more information, see the article “Getting Started With QuickDraw GX” in this issue of develop.Q    Will display cards that offer QuickDraw acceleration be affected by QuickDraw GX?A    Current QuickDraw acceleration cards aren’t affected by QuickDraw GX. QuickDraw GX doesn’t use any of the current QuickDraw calls and its presence won’t affect applications that use only QuickDraw. QuickDraw acceleration cards also won’t accelerate QuickDraw GX.Q    The LaserWriter driver before the QuickDraw GX version has an option to print in Color/Grayscale or Black & White. Why isn’t this option in the QuickDraw GX LaserWriter driver?A    The Color/Grayscale option was added to the LaserWriter driver only for compatibility reasons. At the time, some applications couldn’t deal with the color option (specifically with cGrafPorts), so a Black & White mode was also provided. The Black & White mode exhibited the same functionality as the earlier LaserWriter driver 5.2.Because most applications are color compatible now, the option was removed from the QuickDraw GX printer drivers. Some people reported that the option let them print faster when they chose Black & White. This was true because of quirks in the earlier LaserWriter driver version. Under QuickDraw GX, this shouldn’t be a problem. If it turns out to be a problem for your driver, you could incorporate black-and-white threshold printing into your “rough draft mode” code. The QuickDraw GX LaserWriter driver always prints in color.Q    When a QuickDraw GX PostScript printer driver generates a file, will it work for Level 1 and Level 2 printers?A    The LaserWriter driver bundled with QuickDraw GX produces a flavor of PostScript that we call “portable.” This flavor is meant to work on the widest range of printing devices, be they Level 1 or 2, color or black and white.Q    What PostScript Level 2 features does the QuickDraw GX printing mechanism take advantage of?A    The Level 2 features used in QuickDraw GX mostly have to do with patterns, text, and bitmaps:•    QuickDraw GX patterns are converted into Level 2 pattern dictionaries when going to a Level 2 printer. The actual PostScript code emitted by the driver differs little with respect to patterns when going to Level 1 or Level 2. However, the procedures defined in the header do something entirely different on a Level 2 printer.•    Line layout in QuickDraw GX takes advantage of the xshow, yshow, and xyshow operators when it makes sense to do so.•    The Level 2 rectangle operators are used in Level 2, though this happens in the procedures defined in the header rather than in PostScript code from the driver.•    On Level 2 printers, the indexed color spaces are used for printing bitmaps up to eight bits deep.•    The plan is to use Level 2 device-independent color when possible.Q    Why can’t I get NewMessageGlobals to work in my gxInitialize message for my QuickDraw GX printing extension? The global data I try to initialize isn’t being accessed correctly.A    You shouldn’t call NewMessageGlobals from any routine in which you access your global data. Otherwise, because of optimization that your compiler may perform, the data references can be invalid. Instead, use an approach like this:extern long A5Size(void);extern void A5Init(void *);typedef    struct GlobalType {     StringHandle    aString;} GlobalType;GlobalType  myGlobals;/* This routine sets the initial values of our global data. */OSErr InitGlobalData(){     OSErr    err;     // Initialize our globals.     myGlobals.aString = GetString(r_myStringID);     err = ResError();     if (!err) DetachResource(myGlobals.aString);     return err;}/* Our override for the gxInitialize message. */OSErr MyInitialize(){     OSErr    err;     // Create an A5 world, then go initialize our global data.     err = NewMessageGlobals(A5Size(), A5Init());     if (!err) err = InitGlobalData();     return err;}A detailed explanation of the problem accompanies the Kabooms printing extension sample on this issue’s CD.Q    A QuickDraw GX printing extension I’ve already written works fine, but when I install my latest creation, it doesn’t show up in the print dialog — only my old printing extension does. Both extensions are the same except for a few lines of code in their gxDespoolPage message overrides. What’s going on?A    Your printing extensions shouldn’t have the same creator type. QuickDraw GX requires unique creator types for drivers and printing extensions, just as the Finder does for applications. A creator type must be unique because QuickDraw GX uses it to build its chain of message handlers. If two printing extensions have the same creator, there’s no way to determine which is which in the chain. You can register creator types for your printer drivers and printing extensions with the Developer Support Center (AppleLink DEVSUPPORT).Q    Will the SndPlayFromDisk routine in the new Sound Manager version 3.0 work on Macintosh models without the Apple Sound Chip? For the current Sound Manager, is there a good way to tell whether a machine supports SndPlayFromDisk?A    Sound Manager 3.0 supports SndPlayFromDisk on all models. Playing from disk is based on the performance of the machine’s SCSI device more than the Sound Manager’s performance. In earlier versions of the Sound Manager, SndPlayFromDisk works only on Apple Sound Chip machines.The System 7.1 interface has a play-from-disk Gestalt flag in the sound attributes selector. If this flag bit is set, play from disk is supported. If you’re not running System 7.1, you’ll have to guess based on whether the version of the system being used has an Apple Sound Chip. So first check for the new Gestalt flag and the presence of Sound Manager version 3.0 or later, which supports this flag. Older versions of the Sound Manager don’t report whether play from disk is supported, so you’ll have to check for the Apple Sound Chip.Q    Is the Component Manager bundled with QuickTime? In other words, will the users of the application I’m designing have to buy QuickTime in order to get the Component Manager?A    The Component Manager was first introduced as part of the QuickTime 1.0 system extension. This makes the presence of QuickTime a requirement for system software versions earlier than System 7.1. The Component Manager is now part of System 7.1, giving the extended functionality to any Macintosh application running on System 7.1 regardless of the presence of QuickTime.Q    How does the Component Manager handle multiple segments?A    The Component Manager doesn’t automatically support multiple code segments. In fact, it assumes that all the code is in one segment. The 'thng' resource allows you to specify one segment. Therefore, if you load other code segments from your main segment, they should be loaded and locked in the system heap. There are several ways you can do this; the register routine probably is the best place to do it. Since the register routine is called only once at registration time, this allows your component to completely load the remaining code segments into the system heap. Components should ensure that A5 (or A4) is set appropriately before any intersegment calls. For more information, see “Managing Component Registration” in this issue of develop.Q    How can I get answers to my Macintosh Common Lisp questions?A    Macintosh Common Lisp technical support is available on the Internet at the following addresses (add “@internet#” for the corresponding AppleLink addresses):•    bug-mcl@cambridge.apple.com, which reaches the MCL team•    info-mcl@cambridge.apple.com, which reaches MCL users at largeYou can join the info-mcl list in one of the following ways:•    Contact info-mcl-request@cambridge.apple.com on the Internet to add your address to the list.•    Join INFO.MCL$ on AppleLink by contacting ST.CLAIR.•    Check comp.lang.lisp.mcl on Internet netnews.MCL utilities and sample source code are available in these places:•    on the MCL 2.01 CD-ROM (available through APDA)•    on the Developer CD Series disc (Tool Chest edition) and the develop Bookmark CD•    on the Internet, by anonymous ftp from the location cambridge.apple.com:/pub/MCL2/contribQ    Can I assume that the value of the ColorSync CWorld parameter returned by the CWNewColorWorld routine isn’t null if the routine was successful? I’d like to determine whether a color world exists by checking the variable for null.A    You can assume that if no error is returned by CWNewColorWorld, the CWorld parameter will be a valid handle. In other words, it won’t be null if no error is returned.Q    The icons that appear in our application’s menu lists are very, very small. It looks like they’re 8 x 8 (scaled) instead of the standard 16 x 16. Can you tell from our test code why this is happening?A    This was a wild one! What’s causing the weird behavior is that you have a 'cicn' resource with ID = 256 that’s smaller than 32 x 32. When the MDEF finds such an icon, it uses it to size the area to use for the menu icons. So, for your application the solution is either to change the 'cicn' to be larger (32 x 32) or to give it a different ID.Q    I’ve installed a resource error procedure (ResErrProc) but it gets called with an error -192 (resNotFound) every time I release a resource. Why is this happening and what can I do to fix it?A    If you install a ResErrProc, the Process Manager switches it out when switching to another application. The problem you’re having is that the Process Manager doesn’t switch it out while in Process Manager code itself. If you break into the debugger in your ResErrProc and examine register A5, you’ll find it’s not your A5; it is in fact the Process Manager’s.What has happened is that the Process Manager has patched ReleaseResource for its own mysterious purposes. An error occurs, which the Process Manager believes it can ignore, but because your ResErrProc is still installed, it gets called and reports the error. To avoid this, when your ResErrProc gets called, check to see whether register A5 is equal to the low-memory global CurrentA5. If the values aren’t equal, you can assume your application wasn’t responsible for the error, so you can ignore it. The code might look like this:void MyResErrorProc (void){     long    A5;     A5 = SetCurrentA5 ();     if (A5 == *(long *)CurrentA5)    /* If they're equal, we're in                                                         current app code */         Debugger();        /* ...or whatever you want to do here */     else                    /* Not in current app code */         SetA5 (A5);        /* Restore old A5 */     return;}Similar problems can occur if you make calls that make other Resource Manager calls. The secondary calls may produce errors that are inconsequential to the primary call, but your ResErrProc gets called anyway. This makes ResErrProcs of limited use, so use any information reported by a ResErrProc carefully.Q    We can’t apply the rotation and skew effects to a QuickTime 1.5 movie. We’ve created an identity matrix, applied RotateMatrix to the matrix, set the matrix to the movie using SetMovieMatrix, and played the movie. The movie didn’t rotate but the movieRect rotated and the movie scaled to the movieRect. Is there anything wrong with what we’re doing?A    Rotation and skew will give you correct results for matrix operations but they haven’t been implemented into QuickTime movie playback yet. Scaling and offset transformations now work with movies and images; rotation and skew are important future directions. Meanwhile, you can accomplish rotation and skewing by playing a movie to an off-screen GWorld and then using QuickDraw GX to display the rotated or skewed off-screen GWorld.Q    The demo programs on the final QuickTime for Windows CD won’t run without locking up, because the QTInitialize function doesn’t return. Any ideas?A    The final QuickTime for Windows exhibits the behavior you describe when the display board is configured in a way that QuickTime for Windows doesn’t recognize. XGA and SuperVGA are modes that could cause this problem. To check whether this is the problem, edit the QTW.INI file to include the following:[Video]Optimize = DriverThe default is Hardware. This could be causing the problem you describe.Q    While updating our application to run correctly under the Kanji version of System 7.1, we’ve noticed that the space bar sends two key-down events (values $81 and $40) as opposed to one ($20). To determine whether the space bar was hit, should we use the key code from the event record instead of the character code?A    This is new with Kanji 7.1 and is still a controversial issue. Codes $81and $40 correspond to the two-byte space character, which is different from the standard ASCII space character (different width).You can’t use the key code from the event record, as it has been lost during KanjiTalk’s event processing. Moreover, even if it were there (or if you got it through a GetKeys call) you shouldn’t use it; the space bar has different key codes on different keyboards!So, the only reasonable workaround in your case seems to be to expand your space bar key-down check to compare with $81 (the first byte of a two-byte character) followed by $40, in addition to comparing with the standard ASCII $20.Q    What kind of resources are available to incorporate WorldScript capability to our programs?A    The first thing to do to support WorldScript is to make sure that your product takes full advantage of the Script Manager. The most up-to-date and comprehensive reference for learning about it is Inside Macintosh: Text. Be sure to check the QuickDraw Text and Text Utilities chapters, because much of the old Script Manager functionality has been moved into those areas. Other references are Guide to Macintosh Software Localization and Localization for Japan. These are all available through APDA. (If compatibility with system software versions before System 7.1 is important to your application, see the earlier documentation: the Script Manager and Worldwide Software Overview chapters of Inside Macintosh Volumes V and VI, and Macintosh Worldwide Development: Guide to System Software.) See also the Text Services Manager chapter of Inside Macintosh: Text.In general, all the rules for being Script Manager–compatible apply, but with a few new twists. WorldScript is still a very young technology and there isn’t a lot of detailed information yet. Some human interface issues have not matured to the point of being ready to standardize. This means that you might find yourself breaking new ground as you add WorldScript support to your application.The Japanese Language Kit is the first new product to take advantage of WorldScript. All the non-Roman system software uses WorldScript but doesn’t really take full advantage of the possibilities.The main advantage of WorldScript is that it supports multiple scripts in a system. The old model was that there could be a Roman script plus one other optional script, and Roman was always the secondary script, unless it was the only script. Now, any script can be the primary script, and there can be multiple secondary scripts. (Roman is still required to be available.) This makes it possible to have Japanese (and in the future, other scripts) installed as secondary scripts in any system.Because many of the Macintosh Toolbox and operating system routines don’t pass script or font information with text, it’s difficult to display multiscript text properly. Menus, dialogs, window titles, and filenames are problem areas. A short-term solution is the Language Kit Extension, which was introduced in the Japanese Language Kit. It dynamically changes the system fonts according to the region code in each application’s 'vers' resource. This allows localized applications to display menus, dialogs, window titles, and filenames correctly. Multiple applications running concurrently can have independent system fonts.The Language Kit Extension also extends the Views control panel to control the current script and font for the entire file system. This allows the user to display, create, and edit filenames for any script installed. Note that this solution supports only one script at a time, and fundamental changes will have to made to the Toolbox to support more than one script concurrently.A technical overview of potential internationalization problem areas is given in the “Internationalization Checklist” on this issue’s CD. Internationalization tips are also provided in “Writing Localizable Applications” in Issue 14 of develop. Here are some areas requiring special attention:•    Font names should be displayed in menus in their appropriate script and font.•    The system (primary) script may not be the same as the application script.•    Script system resources (date/time/currency) should be referenced explicitly.•    Text should be tagged with script and font information so that it can be displayed in its appropriate script and font.Styled text and QuickDraw GX are multiscript-capable and should be used as much as possible. Unstyled text documents limit text to one script (character set), which is undesirable.Ideally, the localized version of a product should be independent of the scripts and languages it supports. With Macintosh multiscript support and today’s cultural diversity within nations, users want “foreign language–capable” applications that let them mix writing systems and use familiar regional formatting conventions.Here are a few tests to see how well you’re doing:•    Does the base version of your application work on all localized versions of system software (such as KanjiTalk, Arabic, German)?•    Install the Japanese Language Kit and see whether your application supports multiscript text. Try using the two-byte Japanese script with a relatively simple script such as German, and then with a bidirectional script such as Arabic.Q    We’re planning to distribute a custom font with our application, by including the FOND and NFNT resources in its resource fork. Are there any problems we might be overlooking by using this technique?A    There are things you must be aware of when embedding fonts in applications. First, no ID conflict resolution is done. Since the system caches some fonts for performance reasons, if your font has the ID of a font in the system, you can’t predict whether you’ll get your font or the system’s font. Second, you must use NFNT instead of FONT resources for bitmap fonts, or the system will sometimes get the wrong font strike. This is described in the Macintosh Technical Note “Fond of FONDs” (Text 21). You should never try to override a font in the System file with one in your application; the name of your custom font should be different from all other font names. If you don’t want your font to show up in menus, give it a name beginning with a period or “%” so that AddResMenu will ignore it.While most printer drivers and the system take pains to find fonts wherever they may be, some software components don’t, and we can’t promise this will work with all printers or all software. While installing fonts in an application should work for most purposes, it’s preferable all around for you (and your customers) to install your fonts in the system. Of course, you should always ask for your font by name in your code.Q    When I try to use the MDEF mDrawMsg to draw the contents of the pop-up box for a pop-up menu, if the system justification is right to left and I send it mDrawMsg with a rectangle that’s too short, the system hangs unless I move the left edge of the rectangle off to infinity and use clipping to constrain the drawing. Is there a better way to do this?A    There may be an easier way to achieve the same result. The standard MDEF has been modified to support two new messages to do exactly what you need. In fact, this was added to support the System 7 pop-up menu CDEF. For an MDEF whose entry point is defined asvoid pascal MyMenu (short message, MenuHandle theMenu, Rect     *menuRect, Point *hitPt, short *whichItem);the two new messages are mCalcItemMsg and mDrawItemMsg. In response to mCalcItemMsg, the MDEF calculates the bounding rectangle of a menu item:•    Input parameters:        message = mCalcItemMsg = 5        theMenu = handle to pop-up menu        menuRect.top and menuRect.left = screen position at which to     draw menu        hitPt = not used        whichItem = menu item to calculate the size for•    Output:        menuRect.bottom and menuRect.right, calculated for correct     size for whichItemIn response to mDrawItemMsg, the MDEF draws an item in a menu:•    Input parameters:        message = mDrawItemMsg = 4        theMenu = handle to pop-up menu        menuRect = rectangle to draw item in        hitPt = not used        whichItem = menu item to draw•    Output:        Draws item whichItem of menu theMenu in rectangle menuRect.    menuRect is determined by first calling the MDEF with    mCalcItemMsg.These messages may be ignored by other menu definition procedures; they’re optional. If you find that your rectangle wasn’t resized after an mCalcItemMsg call, the MDEF has probably ignored your size request, and you should do it manually. The standard MDEF will continue to support these options.Q    We create an alias for a file when File Sharing is off, so the alias doesn’t contain server and zone information. Then we turn on File Sharing and resolve the alias. The file, of course, is found but the alias isn’t marked for an update. Shouldn’t it be updated?A    According to Inside Macintosh: Files, wasChanged is set to TRUE only on aliases created by NewAlias (not NewAliasMinimalFromFullPath or     NewAliasMinimal) when it sees that key information has changed. The key information is:•    name of the target•    directory ID of the target’s parent•    file ID or directory ID of the target•    name and creation date of the volume on which the target residesSince none of that changes when you turn File Sharing on or off, the wasChanged flag isn’t set to TRUE. If you’re really worried about it, just call UpdateAlias every time you use the alias (unless you think this would be a major performance hit). Or maybe you should update it only if you notice that it doesn’t have server information and the server is now turned on (to check for this, call PBHGetVolParms and check the bHasPersonalAccessPrivileges bit).Q    When I try to compile some C++ code that I’m porting from another platform, I get the error message shown below. Can you shed some light on what the error means? I can avoid it by removing labels, but sometimes it’s difficult to fix. What’s the real cure?# 4:14:35 PM ----- Executing build commands.     CPlus -s tops1 -model far -sym on -mf test.cp     Set Echo 0File "test.cp"; line 704 # sorry, not implemented: label in blockwith destructorsA    The error message is correct; labels in a scope that locally defines objects with destructors aren’t supported. The most appropriate fix would be for AT&T to fix their CFront code to support this, but that’s not going to happen right away.The variety of twisted code paths that become possible when labels and gotos are used probably gave the compiler programmers conniptions. When code can contain constructors and destructors, the C++ compiler has to be extremely careful to construct each object only once and destruct each object only once. This probably was a problem for the C++ compiler if gotos were allowed, so the compiler programmers must have chickened out and didn’t write the necessary code (at least, not yet). The only solution to this error is either to avoid the label and goto constructs (which you’ve been trying to do) or to keep any objects with destructors out of the block that contains the label.Q    I want to use sprintf in a standalone code resource, but I’m having trouble linking my resource because sprintf apparently requires data-to-code references. I get the error shown below; what can I do to avoid this?### While reading file "HD:MPW:Libraries:Libraries:Runtime.o"### Link: Error: Data to Code reference not supported (no JumpTable). (Error 59)### Link: Errors prevented normal completion.A    Unfortunately, a great deal of the standard C library uses globals, which necessitates your creating an A5 world as described in the Macintosh Technical Note “Stand-Alone Code, ad nauseam” (Platforms & Tools 35). Additionally, some of the global data used is initialized with function pointers. For example, if you had the following global variable definedProcPtr     gMyProcedure = (ProcPtr)MyFunc;where MyFunc is a function of yours, you can see that the global variable would have to be initialized with a pointer to the function before your code started executing. MPW’s loader supports only pointing variables such as these at A5-relative references — that is, into the jump table. It cannot initialize them to the PC-relative reference that a standalone code segment requires. This means that you can’t link any code resource that requires a data-to-code reference — thus the error.Fortunately, there’s a workaround. Because the standard library is written very generally and uses a lot of indirection, the linker believes sprintf might use some of the standard output calls; however, it never does, and since it’s these calls that necessitate the use of the data-to-code references, if we can fool the linker into accepting an innocuous substitute, we won’t require the data-to-code references that are causing us such agony now. To cut to the chase, add the following lines to your code somewhere:size_t fwrite (const void *, size_t, size_t, FILE *) { return 0; }flsbuf() {}    // These calls won't actually be called by sprintf.fcvt() {}        // These calls are used only for floating-point %fecvt() {}        // and %e. The first two calls override fwrite and flsbuf; these calls will no longer cause the linker to believe that you require the data-to-code references; because they’re never called by sprintf, replacing them isn’t a difficulty. The second two calls are only conveniences; they stub out the standard library’s code for converting floating-point arguments. If you never use %f or %e in your sprintf calls, these will reduce the size of your compiled code. To get these overriding functions to mask the versions in the StdCLib.o library, make sure that the object file containing these stubs appears on the Link command line before the StdCLib.o library.Q    Why does calling FSpCreateResFile return an afpAccessDenied error (in ResErr) when the destination folder is an AppleShare drop folder?A    Using any of the CreateResFile calls in a drop box is a useless exercise. Here’s why: The access privileges within a drop box are very limited write-only access. This lets you create new files and then perform a small set of operations on the file while it’s empty (no bytes in either the data or the resource fork of the file). So, while the file is empty, you can open it (either fork) with write-only access (PBHOpenDeny or PBHOpenRFDeny), and write the file’s attributes (PBHSetFInfo or PBSetCatInfo), including Desktop Manager comments. Once either fork has a single byte of data written to it, you can no longer open or change the file’s attributes. This makes it possible to copy a file into a drop folder, but not to manipulate or delete a file (containing data) that’s already in the drop folder. You can also move a file or directory into a drop folder if that file or directory is already on the same server volume.So, when you call CreateResFile on a drop folder, a new file is created and data is added to the resource fork of the file. Since the file now has data in one of the forks, you cannot open the file or change any of the file’s attributes. FSpCreateResFile fails because after performing the CreateResFile operation that writes data into the resource fork, it attempts to set the file’s attributes (creator, fileType, and scriptTag).For a quick explanation of drop folder access privileges and rules, see the Macintosh Technical Note “Creating Files Inside an AppleShare Drop Folder” (Files 18). For a complete explanation of what AFP access privileges you need to perform specific operations on an AppleShare (AFP) server, see the section “Directory Access Control” in Inside AppleTalk starting on page 13-31.Q    When I try to send an OpenSelection Apple event to the Finder, I get a -903 error after calling AESend. Could you tell me what causes this error and how I can overcome it?A    The application is returning the -903 error because it isn’t completely set up to send and receive Apple events. This is why you’re getting the error only after calling AESend. The problem is that the isHighLevelEventAware bit isn’t set in your SIZE resource, meaning that your application doesn’t send or receive high-level events. For more information on setting the isHighLevelEventAware bit, see Inside Macintosh: Macintosh Toolbox Essentials, pages 2-115 through 2-119 (or Inside Macintosh Volume VI, pages 5-14 through 5-17). Q    When we launch our Macintosh application, the system heap grows by huge amounts. It seems to be filling up with font-related resources. What’s causing this to happen?A    Your application is probably calling RealFont for each font installed in the system. Trying to build lists of font information at startup nearly always balloons the system heap to enormous sizes if you have lots of fonts.When you call RealFont, the system must load the FOND resource and walk through the association table to see if there’s a bitmap for it. If there’s a TrueType font, the Font Manager loads the 'sfnt' resource and examines it. A value inside TrueType fonts says “I don’t render smaller than this resolution”; if the requested resolution is smaller than that value, RealFont returns FALSE even on a TrueType font. For most of Apple’s TrueType fonts the value is about 6 points — calling RealFont(2, Helvetica) will return FALSE.So the system is loading every FOND and 'sfnt' looking to see whether the fonts are real. The main solution is not to call RealFont until you’re sure you need the information. For example, don’t outline Size menus until just before they’re accessed or until a new font is chosen, to prevent this kind of problem.Q    I just wrote an installer script for the Apple Installer version 3.4. After the installation is complete and I click the Quit button, the Finder insists on mounting both of the disks that were used in the installation. It gives me the annoying dialog “Please insert the disk Install 1” and “Please insert the disk Program 1.” Before I did the installation, only the Install 1 disk was mounted by the Finder. Why is this happening?A    This situation typically occurs when the installer disk sets were created under System 7 and the installation is happening under system software version 6.0.x. Its cause is that the system is trying to update the second disk’s desktop. The solution in this case is to insert the disk into a system running version 6.0.x before performing the installation.Another possible cause for this problem is that the second disk opens to display a window by default. When the Installer quits, there’s still “residue” Finder information to be written to the second disk, which has since been ejected. The solution in this case is to insert the second disk with the write tab lock disabled, and close any open window associated with that disk.Q    I received an error code of -151 from NewGWorld when creating a very large off-screen bitmap. Does this mean not enough memory? If so, can I count on it not to change in future versions of the system? It’s not listed as one of the possible errors in Inside Macintosh Volume VI.A    The error -151 is cTempMemErr, “failed to allocate memory for temporary structures,” or in other words, there wasn’t enough temporary memory available for NewGWorld. NewGWorld returns this error after it receives a memFullErr     from TempNewHandle. (See Inside Macintosh: Memory or the Memory Management chapter of Inside Macintosh Volume VI for more information about temporary memory.) This was inadvertently left out of Inside Macintosh Volume VI but does appear in the MPW interface files. You can count on this error code in future versions of system software.Q    SetStylHandle appears to dispose of only the TEStyleHandle in the TextEdit record and not the handles in the TEStyleRec in system software version 7.0.1. Since my application calls SetStylHandle often, I’m leaving lots of little handles around in my heap. Can I safely dispose of the handles in the current TEStyleRec before calling SetStylHandle?A    SetStylHandle does indeed orphan the related handles in your heap, a potential problem for applications using SetStylHandle. This won’t be fixed in the foreseeable future. Your application will be fine disposing of the handles itself. Here’s a routine you can use instead of SetStylHandle; it correctly disposes of the substructures in the TEStylRec before calling SetStylHandle:void FixedSetStylHandle(TEStyleHandle newstyle, TEHandle hte)/*     This function avoids orphaning the substructures of a      TEStyleRec by disposing of them before calling SetStylHandle.*/{     register TEStyleHandle oldstyle;     /* Get the old-style handle so that we can clean it up. */     oldstyle = GetStylHandle(hte);     /* Dispose of the substructures first. */     DisposeHandle((**oldstyle).styleTab);     DisposeHandle((**oldstyle).lhTab);     DisposeHandle((**(**oldstyle).nullStyle).nullScrap);     DisposeHandle((**oldstyle).nullStyle);     /* Now we can install the new style. */     SetStylHandle(newstyle, hte);}Q    I was hiking in a remote part of the Rocky Mountains and could have sworn that I saw the familar Macintosh beach-ball cursor. Is this possible?A    Yes; that’s the same symbol that’s used to signify a ranger station. It could also be that you were hallucinating. (By the way, develop’s Editor-in-Cheek tells us that the beach-ball cursor can also be found on the reverse of an Eastern Caribbean $5 bill; she took a special field trip down there just to check this out.)KON & BAL’S PUZZLE PAGEI’M HERE TO SERVEKONSTANTIN OTHMER AND BRUCE LEAKSee if you can solve this programming puzzle, presented in the form of a dialog between Konstantin Othmer (KON) and Bruce Leak (BAL). The dialog gives clues to help you. Keep guessing until you’re done; your score is the number to the left of the clue that gave you the correct answer. These problems are supposed to be tough. If you don’t get a high score, at least you’ll learn interesting Macintosh trivia.    BAL    Here’s one for you, KON: I’ve got this server that I store builds on. It’s a Macintosh ci running System 7.1 with File Sharing enabled, hooked up over Ethernet. The server runs an experimental MPW tool that spins the beach-ball cursor (don’t they all?) waiting for a build to appear; then it renames the build with the next release number and makes it available to the public. Early on we had some problems with the tool and it would occasionally crash the server, but that seems to be working now.    KON    So what’s the problem?    BAL    When I use the Finder to copy my latest build out there, it crashes the server. Yet when I use the duplicate command as part of the MPW build script for my project, it works.    KON    I thought you did all your builds in THINK C.    BAL    Of course, but I use MPW for file management just like the guys on the Finder team.    KON    Chalk one up for MPW.    BAL    But that’s not all. When I use the Finder to copy other files out to the server it works fine. Solve me, KON. Over.    KON    I’m suspicious of that MPW shell script running on the server. It’s continuously making file system calls while File Sharing is trying to copy your file over in the background. There must be some contention         caused by MPW trying to rename the file while it’s still in the process of being copied.    BAL    Come on, KON, what do you think we’re running here? This is System 7 we’re talking about. Don’t you think we would get something like that right on the seventh try?    KON    No comment.100    BAL    If I stop the MPW shell script running on the server or even quit MPW completely, the server still crashes when I use the Finder to copy my build to it.    KON    Are the Finder copies that crash file-size dependent?95    BAL    Size doesn’t seem to matter. The Finder can successfully copy files that are the same size, smaller, and bigger than mine without crashing the server.    KON    So it’s the server that’s crashing?    BAL    Yeah, the progress bar comes up on the client machine, the copy starts, and then almost immediately the server crashes and the client machine hangs in XPP’s two-minute penalty box.    KON    There’s an updated version of the StopXPP dcmd that works with System 7 for all those MacsBugphiles. Install that baby and you’re golden. When the client hangs because the server has gone away, just drop into MacsBug and type StopXPP to force the connection to time out immediately. Any other problems?90    BAL    Yeah, yeah, yeah. I’ve already got that dcmd. My machine isn’t hung anymore, but the server is still crashed and your point total is still falling.    KON    You packrat! You stole one of those rev J Apple Ethernet cards from Van Brink’s garage. It’s dropping bits, same as it ever did, and the way the Finder is slicing up your bit stream chokes it.85    BAL    Sorry, it’s rev K of the card — the one that only drops bits when you’re running in 32-bit mode — but the ci has only 8 megs of RAM and is running in 24-bit mode.    KON    OK, I’ll try Third-Party Cards for $200.80    BAL    KON, I use only Apple equipment. Throw the card out altogether, use LocalTalk, and it still happens. Get a life.    KON    Are there any other cards in the ci that are dropping bits? Perhaps the Apple ci cache card?75    BAL    No cards, but if it makes you feel any better, I’ll have Vanna swap in a new ci, keeping only the hard disk; it still happens.    KON    I don’t want a ci anymore. How ’bout we try an fx, or maybe even a Classic?70    BAL    Vanna’s getting a little tired here. Bad news: it still happens on all of them.     KON    What if we try one of those NuTek boxes?65    BAL    Fine. It crashes on boot. Next.    KON    And swapping out the hard drive fixes it?60    BAL    Swapping out the hard drive stops the server from crashing. Any chance I can solve this problem and preserve my existing hardware investment?    KON    So there’s something wrong with your system software or the File Sharing software on that drive. I’ll reinstall all that stuff and watch it work beautifully. Problem solved.55    BAL    Not! After you reinstall System 7.1 and all the bogus networking disks, and reinstall MacsBug and the dcmds from the virgin copies that came with that Debugging Macintosh Software book, ISBN #0-201-57049-1, it still happens.    KON    I never really trusted installing over existing corrupt software. So I throw everything in the trash, empty the trash, and reinstall fresh.50    BAL    It still happens.    KON    Maybe the volume allocation is messed up: you’ve got some bad I-nodes, circular B-tree references, or some other HFS mumbo jumbo. I’ll confer with Dr. Norton and see what he thinks.45    BAL    Doctors Norton, Feldman, and Bruffey, Disk FirstAid, and others all give it a clean bill of health, though a few file dates were wrong and they’ve been fixed.    KON    So maybe some part of the media went bad, producing bad sectors or ambiguous data. I’ll do a media test using Silverlining.40    BAL    The media is fine. OK, KON. Quit screwing around. It’s not a hardware problem.    KON    But when I replaced the hard disk, the problem went away. What remains after I throw all the files away? Well, the driver persists. I’ll update the driver with the utility software that came with the drive.35    BAL    It still happens. It doesn’t have anything to do with the driver.    KON    I’ll try SneakerNet!30    BAL    Well, transferring the file by floppy disk doesn’t work either, using the Finder on the server. Surprisingly, this most reliable means of         networking doesn’t work even though you aren’t using high-density floppies. In this case paper clips don’t even help.    KON    OK, I reformat the drive and reinstall the software fresh.25    BAL    Now it works. So what’s the bug?    KON    Well, the reformatting changed the interleave, and there was some weird timing problem hosing you.20    BAL    Enough grasping at straws. Remember it only happens with my file or copies of my file. Get those rusty old gears turning.    KON    I’ll chop the file into pieces and see if those still crash the server when I copy them. I’ll strip out all the CODE resources with ResEdit and try that file.15    BAL    The file is pretty small now, and it still crashes.    KON    I strip out all the data by setting the EOF.10    BAL    It still crashes. Look, I can build it from scratch, I can build it on other machines, I can change the code that’s in it, other people can build it on their machines, it happens with Ethernet, SneakerNet, LocalTalk, you name it — it still crashes.    KON    And people thought we’d run out of these puzzles.    BAL    I got a great one for next time, too, but you’ve got to finish this one first.    KON    So what makes my file my file? If it’s not the name, the data in it, or the creation date, it’s got to be the container info — the icon, the file type, the creator, that stuff.     BAL     Your puzzle, KON.    KON    The Desktop Manager previously used only by AppleShare is used by the Finder in System 7, right? 5    BAL    Yeah, there are two invisible data files: Desktop DB and Desktop DF. Desktop DF has the all the data for the icons, and Desktop DB has information for all files: the document-to-application binding, the file-to-icon binding, and the file-to-comment binding. For each application creator, it keeps a list of all the applications of that type with the newest one first. That way when you double-click a document, the Finder launches the newest version of the application that handles that document.    KON    I get it. The desktop database got corrupted by the experimental MPW tool you had, and when the Finder tries to update the database, it reads bad data and chokes.    BAL    It worked when copying files via MPW because MPW doesn’t try to keep the desktop database up to date.     KON    So you should be able to rebuild the desktop database by holding down the Command and Option keys while booting. Then everything will work great.    BAL     I knew the AppleShare servers are the most reliable in the business, and I couldn’t believe we got one to crash.    KON    Well, if you want to write sleazy MPW tools that you haven’t fully debugged, you get what’s coming to you.    BAL    In fact, for ultimate security on a network server, you should lock it in a room and not run any weird stuff that isn’t endorsed by your AppleShare administrator.    KON    Right! But if you insist on running untested code, you get what you pay for.    BAL    Nasty.    KON    Yeah.INDEX    Aaccelerator cards, Macintosh Q & A  117activate events, floating windows and  92–96ActivateFloatersAndFirstDocu-mentWindow, floating windows and  99–100AddAdorner, 3-D effects and  109AdLib, 3-D effects and  109adorners, 3-D effects and  111–112AESend, Macintosh Q & A  129Alert, floating windows and  96alerts, floating windows and  90, 96Alexander, Pete (“Luke”)  6aliases, Macintosh Q & A  126–127Apple events, Macintosh Q & A  129AppleScript, QuickTime and  77AppleShare  5, 129Apple Sound Chip, Macintosh Q & A  119ashow (PostScript), QuickDraw GX and  62asynchronous routines, new information on  5attributes, QuickDraw GX and  8awidthshow (PostScript), QuickDraw GX and  62Bbackground adorners, 3-D effects and  109base components, QuickTime and  85Bézier curves, QuickDraw GX and  53–54bitmaps, Macintosh Q & A  130–131bitmap shape  8Black & White option, Macintosh Q & A  117    BringToFront, floating windows and  93By Page Setup, QuickDraw GX and  11, 30, 31CCaptureComponent, QuickTime and  86CDEFs, 3-D effects and  112CDrawPerDevice, 3-D effects and  109, 110, 111, 113CGraphicsState, 3-D effects and  109, 110, 111charpath (PostScript), QuickDraw GX and  70child view port, QuickDraw GX and  20–21Chooser, QuickDraw GX and  10Collection Manager, QuickDraw GX and  35collections, QuickDraw GX and  35Color/Grayscale option, Macintosh Q & A  117color profile object, QuickDraw GX and  56Color QuickDraw, floating windows and  97, 98ColorSync, Macintosh Q & A  121common color library, QuickDraw GX and  18complete message override, QuickDraw GX and  38component load order resource, QuickTime and  79–80Component ManagerMacintosh Q & A  120QuickDraw GX and  34–35QuickTime and  74–83components  74–83, 84–88constructors, 3-D effects and  110context switching  5, 92asynchronous routines and  5floating windows and  92    control classes, 3-D effects and  112–113copypage (PostScript), QuickDraw GX and  52Count1Resources, QuickTime and  79CreateThePageOfGXShapes, QuickDraw GX and  29custom fonts, Macintosh Q & A  125CWNewColorWorld, Macintosh Q & A  121Dderived components, QuickTime and  86desktop printers  10despooling  36destructors, 3-D effects and  110“Developing QuickDraw GX Printing Extensions” (Weiss)  34–50device communications  36DeviceLoop, 3-D effects and  110Device Manager, asynchronous routines and  5display cards, Macintosh Q & A  117DisposeWindow, floating windows and  96DisposeWindowReference, floating windows and  96, 99Document Setup, QuickDraw GX and  11, 30, 31document structuring conventions, QuickDraw GX and  65DragReferencedWindow, floating windows and  100DragWindow, floating windows and  100Draw, 3-D effects and  109, 110, 111, 112drivers, Macintosh Q & A  117dynamic linking, QuickTime and  84–88    EEncapsulated PostScript, QuickDraw GX and  52EnterGraphics, QuickDraw GX and  15'eopt' resource, QuickDraw GX and  46, 47–48Erase adorner, 3-D effects and  109EraseRect, 3-D effects and  111–112Event Manager, floating windows and  92FFailedForward_GXCountPages, QuickDraw GX and  41File Manager, asynchronous routines and  5file servers, KON & BAL puzzle  132–136File Sharing  5, 126–127filled objects, QuickDraw GX and  70FinderKON & BAL puzzle  132–        136Macintosh Q & A  129, 130QuickDraw GX and  10QuickTime and  823-D effects and  107, 113FindNextComponent, QuickTime and  87“Floating Windows: Keeping Afloat in the Window Manager” (Yu)  89–102FOND resource, Macintosh Q & A  125, 130font resources, Macintosh Q & A  125, 129–130fonts  68–69, 125, 129–130Forward_GXCountPages, QuickDraw GX and  41, 45ForwardMessage, QuickDraw GX and  45    ForwardThisMessage, QuickDraw GX and  454-Up printing extension, QuickDraw GX and  34–50framed objects, QuickDraw GX and  70FrontNonFloatingWindow, floating windows and  101FSpCreateResFile, Macintosh Q & A  129Ggeometric shape  7Gestalt  14, 77Get1IndResources, QuickTime and  79GetActivateHandlerProc, floating windows and  100GetMediaSample, QuickTime and  88GetNewWindow, floating windows and  96GetNewWindowReference, floating windows and  96, 98, 99GetNextEvent, asynchronous routines and  5“Getting Started With QuickDraw GX” (Alexander)  6–33glyphs, QuickDraw GX and  60, 61–62, 68–69'gnht' resource, QuickTime and  83GraphicsBug, QuickDraw GX and  14, 33Greg’s Buttons, 3-D effects and  112grestore (PostScript), QuickDraw GX and  59Guschwan, Bill  84GXCountPages, QuickDraw GX and  39, 40, 41, 45GXDespoolPage, QuickDraw GX and  39, 40, 41–45, 48    GXDisposeGraphicsClient, QuickDraw GX and  32, 33GXDisposeShape, QuickDraw GX and  32GXDrawShape  22, 25, 28, 29, 63GXExitPrinting, QuickDraw GX and  32GXGetGraphicsError, QuickDraw GX and  13GXGetJob, QuickDraw GX and  40GXGetJobError, QuickDraw GX and  30GXGetPictureParts, QuickDraw GX and  59GXGetShapeDrawError, QuickDraw GX and  12GXIgnoreGraphicsNotice, QuickDraw GX and  13GXIgnoreGraphicsWarning, QuickDraw GX and  13GXImagePage, QuickDraw GX and  39GXLoad, QuickDraw GX and  16GXMoveShape, QuickDraw GX and  59GXNewGraphicsClient, QuickDraw GX and  15GXNewShape, QuickDraw GX and  32GXPrimitiveShape, QuickDraw GX and  70GXRenderPage, QuickDraw GX and  39GXSetPictureParts, QuickDraw GX and  59GXSetShapeTextSize, QuickDraw GX and  61GXSetShapeType, QuickDraw GX and  23, 70GXSetStyleRunFeatures, QuickDraw GX and  27GXSpoolPage, QuickDraw GX and  39GXUnload, QuickDraw GX and  16    GXValidate, QuickDraw GX and  17Hhandles, Macintosh Q & A  131help balloons, floating windows and  90HideReferencedWindow, floating windows and  96, 99HideWindow, floating windows and  93, 99HiliteWindow, floating windows and  93human interface, 3-D effects and  103–114Iicon buttons, 3-D effects and  105–108icons, Macintosh Q & A  121image file  36InitPrinting, QuickDraw GX and  30INITs, QuickTime and  77, 79–82InitU3DDrawing, 3-D effects and  109ink object, QuickDraw GX and  8, 56Installer, Macintosh Q & A  130installer scripts, Macintosh Q & A  130JJohnson, Dave  71Jones, Tao  115jump table, QuickDraw GX and  45–46KKanji 7.1, Macintosh Q & A  123key-down events, Macintosh Q & A  123Komponent Killer, QuickTime and  88    “KON & BAL’s Puzzle Page” (Othmer and Leak)  132–136kshow (PostScript), QuickDraw GX and  62LLaserWriter driver, Macintosh Q & A  117LastFloatingWindow, floating windows and  101layout shape, QuickDraw GX and  60, 61, 62Leak, Bruce  132line adorners, 3-D effects and  109line groups  72–73line layouts, QuickDraw GX and  26–29Lipton, Daniel  51LoadComponents, QuickTime and  80loader component, QuickTime and  82–83LoaderINIT, QuickTime and  80, 81, 82, 83'load' resource, QuickDraw GX and  46, 48MMacintosh Common Lisp, Macintosh Q & A  120–121Macintosh Easy Open, QuickTime and  77Macintosh Q & A  117–131MacsBug, QuickDraw GX and  14makefont (PostScript), QuickDraw GX and  68“Managing Component Registration” (Woodcock)  74–83math types, QuickDraw GX and  52–53matrix transformations, QuickDraw GX and  54–55MDEFs, Macintosh Q & A  125–126    MediaIdle, QuickTime and  86, 87–88MediaInitialize, QuickTime and  86, 87memoryMacintosh Q & A  130-131QuickDraw GX and  16, 17Memory Manager  5, 15, 16, 33message class  34message handler  34Message Manager, QuickDraw GX and  34, 37, 38, 45message objects  34ModalDialog, floating windows and  96modal dialogs, floating windows and  90, 96modal windows, floating windows and  96modeless dialogs, floating windows and  90movie controller component, QuickTime and  74MoviePlayer, QuickTime and  84MoviesTask, QuickTime and  86MultiFinder  5, 15multiple segments, Macintosh Q & A  120NNewCWindow, floating windows and  97NewGWorld, Macintosh Q & A  130–131NewMessageGlobals, Macintosh Q & A  118–119NewMovieFromFile, QuickTime and  84NewWindow, floating windows and  96, 97NewWindowReference, floating windows and  96, 97, 98, 99NFNT resource, Macintosh Q & A  125    nonsquare pens, QuickDraw GX and  67–68notices, QuickDraw GX and  12, 13OObject Pascal, 3-D effects and  110objects, QuickDraw GX and  70oblique text, QuickDraw GX and  68–69off-screen bitmaps, Macintosh Q & A  130–131OpenComponent, QuickTime and  86, 87, 88OpenSelection, Macintosh Q & A  129Osborne, Jamie  103Othmer, Konstantin  132outline text, QuickDraw GX and  69'over' resource, QuickDraw GX and  46, 47overrides, QuickDraw GX and  37owner count, QuickDraw GX and  8Ppage layout, QuickDraw GX and  51–70PaintRect, 3-D effects and  112partial message override, QuickDraw GX and  37paths, QuickDraw GX and  70PDEF, QuickDraw GX and  37picture, QuickDraw GX and  8plane groups  72point groups  72pop-up boxes/menus, Macintosh Q & A  125–126portable digital document  10, 36PostScript  11, 51–70, 117PPC Toolbox, asynchronous routines and  5    primitive shape, QuickDraw GX and  70Print dialog, QuickDraw GX and  11printer drivers, Macintosh Q & A  117PrinterShare GX  10, 36, 39printing extensions  11, 34–50, 118–119Printing Manager  30, 35, 37, 40Print One Copy, QuickDraw GX and  30, 31Process Manager, asynchronous routines and  5QQ & A, Macintosh  117–131QTInitialize, Macintosh Q & A  122QuickDrawMacintosh Q & A  117QuickDraw GX and  6, 8, 11,     513-D effects and  111QuickDraw GXcompared to PostScript  51–    70developing printing     extensions  34–50getting started with  6–33Macintosh Q & A  117, 118–    119symmetry and  71QuickDraw GX heap  15, 16QuickDrawGXInit, QuickDraw GX and  15“QuickDraw GX for PostScript Programmers” (Lipton)  51–70QuickTimecustomizing components  84–    88Macintosh Q & A  120, 122registering components  74,     77, 78    QuickTime for Windows CD, Macintosh Q & A  122QuickTime INIT  77RRegisterComponent, QuickTime and  87Reinstaller II, QuickTime and  88resource fork, Macintosh Q & A  125Resource Manager, QuickTime and  79ResumeFloatingWindows, floating windows and  100RotateMatrix, Macintosh Q & A  122rotational symmetry  72rotation effect, Macintosh Q & A  122rotocenter  72Sscalefont (PostScript), QuickDraw GX and  60–61'scop' resource, QuickDraw GX and  46, 48–50ScrollRect, QuickDraw GX and  21SCSI Manager, asynchronous routines and  5segments, Macintosh Q & A  120SelectReferencedWindow, floating windows and  96, 99SelectWindow, floating windows and  93, 99SendBehind, floating windows and  93Send_GXCountPages, QuickDraw GX and  45SetActivateHandlerProc, floating windows and  100SetGraphicsLibraryErrors, QuickDraw GX and  16SetGraphicsLibraryNotices, QuickDraw GX and  16    SetMovieMatrix, Macintosh Q & A  122setpagedevice (PostScript), QuickDraw GX and  52, 64SetShapeCommonColor, QuickDraw GX and  18SetStylHandle, Macintosh Q & A  131shape object, QuickDraw GX and  7, 22–30, 56show (PostScript), QuickDraw GX and  60, 62ShowHide, floating windows and  93showpage (PostScript), QuickDraw GX and  52, 56ShowReferencedWindow, floating windows and  96ShowWindow, floating windows and  93, 99ShutDownProgram, QuickDraw GX and  33skew effect, Macintosh Q & A  122SndPlayFromDisk, Macintosh Q & A  119“Somewhere in QuickTime” (Guschwan)  84–88Sound Manager, Macintosh Q & A  119space groups  73SpeakText, QuickTime and  88stack-based objects, 3-D effects and  109–111StackSpace, asynchronous routines and  5standalone code resources, Macintosh Q & A  127–128stroke (PostScript), QuickDraw GX and  70strokepath (PostScript), QuickDraw GX and  70style object, QuickDraw GX and  8, 56    SuspendFloatingWindows, floating windows and  100symmetry, Johnson ponders  71–73symmetry group  72synchronous drivers, asynchronous routines and  5SysBeep, QuickTime and  77System 6, asynchronous routines and  5System 6.0.7, QuickTime and  77System 7.0asynchronous routines and  5QuickTime and  773-D effects and  108System 7.0.1  77, 131System 7.1  78, 81, 123System CDEF, 3-D effects and  113system heap, Macintosh Q & A  129–130system windows, floating windows and  90TT3DButton, 3-D effects and  109, 113T3DCheckBox, 3-D effects and  109T3DFrameAdorner, 3-D effects and  108–109, 112T3DGrayBackgroundAdorner, 3-D effects and  108–109, 112T3DIconButton, 3-D effects and  109, 113T3DLineBottomAdorner, 3-D effects and  108–109, 112T3DLineLeftAdorner, 3-D effects and  108–109, 112T3DLineRightAdorner, 3-D effects and  109, 112T3DLineTopAdorner, 3-D effects and  108–109, 112T3DListFrameAdorner, 3-D effects and  112    T3DRadio, 3-D effects and  109tag list, QuickDraw GX and  8tag objects  8, 56TButton, 3-D effects and  113TControl, 3-D effects and  108, 109, 112, 113TDrawingEnvironment, 3-D effects and  112TeachText, QuickDraw GX and  36TEditText, 3-D effects and  112tessellation  71text, QuickDraw GX and  22–26, 51–70TextEdit, Macintosh Q & A  131text media handler, QuickTime and  84–88text shape, QuickDraw GX and  60Text-to-Speech Manager, QuickTime and  84–88TGrayBackgroundAdorner, 3-D effects and  108–109, 111, 112'thld' resource, QuickTime and  79'thng' resource, QuickTime and  77, 79, 80, 83Thomas, Deanna  103three-dimensional effects, MacApp and  103–114TIconSuite, 3-D effects and  113tile shapes, Johnson ponders  71–73Time Manager, asynchronous routines and  5TListView, 3-D effects and  112transform object, QuickDraw GX and  8, 56TrueType GX font, QuickDraw GX and  10TStaticText, 3-D effects and  112TView, 3-D effects and  110, 112TWhiteBackgroundAdorner, 3-D effects and  108–109, 112    Type 1 GX font, QuickDraw GX and  10typographic shape  7Uuser interface, 3-D effects and  103–114Vvalidation, QuickDraw GX and  17“Veteran Neophyte, The” (Johnson)  71–73view device  8ViewEdit, 3-D effects and  109view editors, 3-D effects and  109“View From the Ledge” (Jones)  115–116view group  8view port objects, QuickDraw GX and  56view ports  8, 18–21'View' resource, 3-D effects and  109WWaitNextEvent, asynchronous routines and  5warnings, QuickDraw GX and  12, 13WDEF resource, floating windows and  97Weiss, Sam  34Window Manager, floating windows and  89–102windows, QuickDraw GX and  18–22WIND resource, floating windows and  98, 99Woodcock, Gary  74“Working in the Third Dimension” (Osborne and Thomas)  103–114WorldScript, Macintosh Q & A  123–125    Xxshow (PostScript), QuickDraw GX and  62xyshow (PostScript), QuickDraw GX and  62Y, Zy-axis, QuickDraw GX and  55yshow (PostScript), QuickDraw GX and  62Yu, Dean  89    WANT TO WRITE FOR develop?YOUR NAME AND ELECTRONICALLY RETOUCHEDPHOTO HERE    We’re always looking for people who might be interested in writing an article or a column for develop. If you’d like to take advantage of this opportunity to spotlight and distribute your code to thousands of developers of Apple products, with a result that you’ll be proud to show your colleagues (and Mom), please read on.WHAT TO WRITEThink about writing an article like the ones you see in this issue, usually ranging from 6 to 30 pages in length, or just a short column (say, 2 to 4 pages). Typically you’ll expound on source code that readers will get on the CD.We encourage authors to write in a light, humorous style; we’ll try to refrain from editing out your jokes!WHO AND WHAT CAN HELP YOUA content editor and technical editor will work with you on your article, and an illustrator will work on any illustrations. A review board will give feedback on your first draft, and numerous technical reviewers will look for errors. Once things come together in the final draft, a copyeditor will go over it all.Not only will you have an opportunity to review your article at several stages, we rely on you to answer questions and in general to review all changes carefully.WHAT TO DO NEXTSend an abstract and an outline to AppleLink DEVELOP, or to Caroline Rose, Apple Computer, Inc., 20525 Mariani Avenue, M/S 303-4DP Cupertino, CA 95014. We can send you our Author’s Guidelines along with information about timing and the scoop on our incentive program.So don’t just sit on those great ideas of yours . . . send ’em along to us!    How’re we doing?  We’d love to hear how you feel about develop. If you have any questions, suggestions, or even gripes, please don’t keep them to yourself. (Be sure to include your name, company name, address, and phone number.)Send editorial suggestions or comments to AppleLink DEVELOPor to:Caroline RoseApple Computer, Inc. 20525 Mariani Avenue, M/S 303-4DPCupertino, CA  95014AppleLink:  CROSEInternet:  crose@applelink.apple.comFax:  (408)253-8521    Send technical questions about develop to:Dave JohnsonApple Computer, Inc.20525 Mariani Avenue, M/S 303-4DPCupertino, CA  95014AppleLink:  JOHNSON.DKInternet:  dkj@apple.comCompuServe:  75300,715Fax:  (408)253-8521    Want to subscribe? CHANGE OF ADDRESS? SUBSCRIPTION QUERIES?        For all your subscription-related needs, see the subscription card, or AppleLink DEV.SUBS.Want to WRITE FOR develop?  If you’d like to contribute an article or column to develop, please see the blurb on the reverse of this page.Back Issues of develop are on the develop Bookmark CD and on the Developer CD Series disc. To get printed back issues, send $13 per issue in the U.S. (or $20 outside the U.S.) to the address on the subscription card.Issue 1  Realistic Color; Palette Manager; Offscreen Worlds; PostScript; Compatibility Rules; Debugging Declaration ROMs; Apple II Development DynamoIssue 2  C++ Objects; Object Pascal; Memory Manager; MacApp; How to Design an Object-Based Application; C++ Style Guide; The GS/OS CacheIssue 3  ISO 9660 and High Sierra; A Mixed-Partition CD; Accessing CD Audio Tracks; Comm Toolbox; Macintosh Display Card 8•24 GC; PrGeneralIssue 4  Writing a Device Driver in C++; Polymorphic Code Resources in C++; Macintosh Coprocessor Platform and A/ROSE; PostScript; An Apple IIgs Printer DriverIssue 5 (Volume 2, Issue 1)  Asynchronous Background Networking; Scanning From ProDOS; Palette Manager Animation; Macintosh Common LispIssue 6  Threads on the Macintosh; QuickDraw’s CopyBits Procedure; MacTCP Cookbook: Constructing Network-Aware ApplicationsIssue 7  QuickTime 1.0; TrueType; Threaded Communications With Futures; Using C++ Objects in a World of Exceptions; Subspace Manager    Issue 8  Curves in QuickDraw; Validating Date and Time Entry in MacApp; Macintosh Debugging; Macintosh Hybrid Applications for A/UXIssue 9  Color on 1-Bit Devices; The TextBox You’ve Always Wanted; Making Your Macintosh Sound Like an Echo Box; Simple Text Windows via the Terminal Manager; Tracks: A New Tool for Debugging DriversIssue 10  Apple Event Objects; PostScript Enhancements for the LaserWriter Font Utility; Drawing in GWorlds; The Optimal PaletteIssue 11  Asynchronous Sound Helper; Multibuffering Sounds; Living in an Exceptional World; NetWork Project: Distributed Computing on the MacintoshIssue 12  Writing and Debugging Components; Time Bases: The Heartbeat of QuickTime; Apple Event Coding Through Objects; Globals in Standalone CodeIssue 13  Asynchronous Routines; QuickTime and Component-Based Managers; Macintosh Debugging Revisited; Adventures in Color Printing; DeviceLoopIssue 14  Writing Localizable Applications; 3-D Rotation Using a 2-D Input Device; Video Digitizing Under QuickTime; Making Better QuickTime Movies    Subscribe to printed develop Would you like to become one of our many subscribers who like to have a paper copy of develop at their fingertips? Subscribing is easy; just follow these simple instructions: •    If you’d like us to bill you, fill out the form in this file and send it via AppleLink to DEV.SUBS, or print and fill it out, check “Please bill me,” and send it by mail to the address on the reverse.•    If you’ll be paying by credit card, fill out the form and send it via AppleLink to DEV.SUBS, or print and fill it out and mail it to the address on the reverse.•    If you’ll be paying by check, money order, or international money order, print the order form, fill it out, and mail with payment to the address on the reverse.Don’t send cash. And please use a separate form for each subscriber.Subscribe & Save 25%Yes! Send me a year (4 issues) of develop and the develop Bookmark CD for only $30 in the U.S. That’s 25% off the cover price. All other countries $50. Name:Company/Institution:Title:Street or Post Office Address:City:State/Province and Zip Code:Country:Telephone:____ Please bill me.        ____ Payment enclosed.____ VISA    ____ MasterCardCredit card account number:Credit card expiration date:______________________________________Signature/Date (only if sending by postal mail)Phone orders call        1-800-877-5548 in the U.S.                (815)734-1116 all other countriesFax orders to        (815)734-1127AppleLink orders to    DEV.SUBSAllow 6–8 weeks for delivery. U.S. subscription price is $30 for 4 issues of develop and the develop Bookmark CD. All other countries $50. For Canadian orders, price includes 7% GST (R100236199). Please make check payable to Apple Computer, Inc., in exact amount in U.S. dollars, and mail to:        develop        Apple Computer, Inc.        P.O. Box 531        Mt. Morris, IL  61054-7858        USAB993BRESOURCESApple provides a wealth of information, products, and services to assist developers. APDA, Apple’s source for developer tools, and Apple Developer University are open to anyone who wants access to development tools and instruction. Qualified developers may access additional information and services through the Apple Associates and Partners programs.      The Associates Program, Apple’s mainstream program for developers, is a convenient and cost-effective way to get essential technical and marketing information. This program offers self-help technical support, keeps you up to date with the latest products and technical documentation, and gives you access to the Apple developer community through AppleLink. Associates also receive discounts on equipment.The Partners Program is open to Apple-selected developers. In addition to receiving the same development information and tools as Associates, Partners receive technical support via electronic mail. Membership in the Partners program is limited to strategic developers who directly contribute to Apple’s long-term product plans and business objectives. APDA offers convenient worldwide access to development tools, resources, training products, and information for anyone interested in developing applications on Apple platforms. Customers receive the quarterly APDA Tools Catalog featuring over 300 Apple and third-party     development products. There are no membership fees. APDA offers convenient payment and shipping options, including site licensing. Apple Associates or Partners automatically receive the APDA Tools Catalog.Apple Developer University (DU) provides training for all levels of Macintosh programmers. Developer University classes give you experience using the most up-to-date development tools. Developer University offers classes at U.S. and international locations and through DU Extension partners. On-site instruction can also be arranged for selected courses. Multimedia self-paced courses are available from Developer University through APDA. DU course offerings include System 7 extensions, object-oriented and procedural programming, and new technologies, such as PowerPC.    F⁄◊#ˇ ˇˇˇˇ#◊ 
  2. d,     Helvetica<.°dONLNd)Ÿe˛+˜vd°dONLNd) e-)3e°dONLNd);e\)/v°dONLNd)jeã)/e°dONLNd)ôe™)/l°dONLNd)∏e›)o°dONLNd)Îe)3p°dONLNde›tÊ(è˚T°dONLNd    eÎtÛ)h°dONLNd
  3. e¯t)e°dONLNd et) °dONLNd et)A°dONLNdet#)p°dONLNde(t0)p°dONLNde5t8)l°dONLNde=tE)e°dONLNdeJtM) °dONLNdeRt[)T°dONLNde`th)e°dONLNdemtt)c°dONLNdeytÅ) h°dONLNdeÜté)n°dONLNdeìtñ)i°dONLNdeõt¢)c°dONLNdeßtØ) a°dONLNde¥t∑)l°dONLNdeºtø) °dONLNdeƒt )J°dONLNdeœt◊) o°dONLNde‹t‰)u°dONLNdeÈtÓ)r°dONLNd eÛt˚)
  4. n°dONLNd!et)a°dONLNd"et)l
  5. ∂-B_òÅ@ù?KKEˆv@ˡ$í$í$íI$I$I$m∂m∂m∂íHíHíH∂⁄∂⁄∂⁄€l€l€lˇ˛ˇ˛ˇ˛    $íaa
  6. I$0√0√ m∂I$I$ íHaÜaÜ∂⁄yÁyÁ€líHíHˇ˛™™™™$í 1 1I$bbm∂$í$ííH0√0√∂⁄<Ù<Ù€lI%I%ˇ˛UUUU$íI$m∂íH∂⁄€lˇ˛ !$í$í$í"I$I$I$#m∂m∂m∂$íHíHíH%∂⁄∂⁄∂⁄&€l€l€l'ˇ˛ˇ˛ˇ˛()$í"‘a*I$E®0√+m∂h|I$,íHãQaÜ-∂⁄Æ%yÁ.€l–˘íH/ˇ˛ÛÕ™™01$í! 12I$B-b3m∂cC$í4íHÑY0√5∂⁄•o<Ù6€lΔÖI%7ˇ˛ÁúUU89$íX:I$>±;m∂^    <íH}a=∂⁄ú∫>€lº?ˇ˛€j@A$í$í$íBI$I$I$Cm∂m∂m∂DíHíHíHE∂⁄∂⁄∂⁄F€l€l€lGˇ˛ˇ˛ˇ˛HI›$íaJ7∫I$0√KSóm∂I$LouíHaÜMãR∂⁄yÁNß/€líHO√ ˇ˛™™PQ($í 1R&QI$bS9ym∂$íTL°íH0√U_ ∂⁄<ÙVrÚ€lI%Wܡ˛UUXY
  7. s$íZÁI$[Zm∂\)ŒíH]4A∂⁄^>µ€l_I(ˇ˛`a$í$í$íbI$I$I$cm∂m∂m∂díHíHíHe∂⁄∂⁄∂⁄f€l€l€lgˇ˛ˇ˛ˇ˛hia$íXj0√I$>±kI$m∂^    laÜíH}bmyÁ∂⁄ú∫níH€lºo™™ˇ˛€kpq 1$írbI$4>s$ím∂N\t0√íHh{u<Ù∂⁄ÇövI%€lú∏wUUˇ˛∂◊xy$íÂzI$) {m∂>Ø|íHSî}∂⁄hy~€l}^ˇ˛íCÄÅ$í$í$íÇI$I$I$Ém∂m∂m∂ÑíHíHíHÖ∂⁄∂⁄∂⁄Ü€l€l€lᡲˇ˛ˇ˛àâaY$íä0√>≤I$ãI$^ m∂åaÜ}díHçyÁúΩ∂⁄éíHº€lè™™€oˇ˛êë 1 $ííb4@I$ì$íN_m∂î0√híHï<ÙÇü∂⁄ñI%úø€lóUU∂flˇ˛òôÁ$íö)ÕI$õ>¥m∂úSõíHùhÇ∂⁄û}i€lüíOˇ˛†°$í$í$í¢I$I$I$£m∂m∂m∂§íHíHíH•∂⁄∂⁄∂⁄¶€l€l€lߡ˛ˇ˛ˇ˛®©‹a$í™7π0√I$´SñI$m∂¨osaÜíH≠ãOyÁ∂⁄Æß+íH€lØ√™™ˇ˛∞±' 1$í≤&ObI$≥9u$ím∂¥Lù0√íHµ_ƒ<Ù∂⁄∂rÎI%€l∑ÜUUˇ˛∏π
  8. r$í∫„I$ªUm∂º)«íHΩ49∂⁄æ>´€løIˇ˛¿¡$í$í$í¬I$I$I$√m∂m∂m∂ƒíHíHíH≈∂⁄∂⁄∂⁄Δ€l€l€l«ˇ˛ˇ˛ˇ˛»…$ía"’ I$0√E©Àm∂I$h~ÃíHaÜãSÕ∂⁄yÁÆ'Œ€líH–¸œˇ˛™™Û—–—$í 1!“I$bB/”m∂$ícF‘íH0√Ñ]’∂⁄<Ù•u÷€lI%Δå◊ˇ˛UUÁ§ÿŸ$íZ⁄I$>¥€m∂^‹íH}h›∂⁄ú¬fi€lºflˇ˛€v‡·$í$í$í‚I$I$I$„m∂m∂m∂‰íHíHíHÂ∂⁄∂⁄∂⁄Ê€l€l€lÁˇ˛ˇ˛ˇ˛ËÈ$íabÍI$0√0ƒÎm∂I$I&ÏíHaÜaàÌ∂⁄yÁyÍÓ€líHíKÔˇ˛™™™ÆÒ$í 1 2ÚI$bdÛm∂$í$ïÙíH0√0»ı∂⁄<Ù<˙ˆ€lI%I,˜ˇ˛UUU]¯˘$í˙I$˚m∂¸íH˝∂⁄
  9. ˛€l ˇˇ˛ù?∂-B_>Ûó˜ñóñó¸ñ˜û˝ùúú˝õ‡ú˛ùúùùúù˜úõúÒõˆú¸ù¨û˛ù˝úÙõÌö¸õ˚ú˝ùÈûÔùWÒó˛ñóóññ˚óññûññ˙û˝ùúú¸õËúù˙ú˙ùÙúÚõˆú˚ùØû˝ù˝ú˙õöõööõõÓö˚õ˚ú˝ùÍû˝ùû˛ùû˛ùû˝ùû˛ùNÂóñóññ˜û˛ù˛ú˛õ·úùùú˝ùúùù¯úõ˜ú˘ù∞û˝ù˛ú¯õöõõ˜öí¯ö˚õ¸ú˝ùÁûù˝û˛ùûû˝ù¸ûùûN˚óè˛óè¸ó˚èóè¸ó˝ñ¯û˛ù˝úõÒúùúùùÙú˚ùÙúÛõˆú¯ù∞û˛ù˛ú˘õöõõ¯öíıö˚õ˝ú˝ùÁûùÎû@˚óèè¯ó˘è¸óññ˜ûùùÏú¸ùıú˙ùˆúÚõˆú˙ùØû˝ùúú˜õ˛öõ˚öíıö˙õ˝ú˝ùœû;ó˘è˘ó¯ûùùÓú˛ùú˛ùˆú˙ù¯úÛõúõõˆú˘ù≤û˝ù˝úıõÌö˙õ¸ú˝ùÿûù¯û8Ôóèèóóèè¯ó¯ûùùÓú˙ù¯ú¸ùúùù¯úÛõÚú˙ù¥û¸ù˝úıõÏö˘õ˝ú˝ùÕûM¯ó¸ñóñ˚óè¯óñ¯ûùùÙúùúù˛ú˝ùˆú˚ùıúˆõ˜úù¯ú˚ùµû˝ù˝ú˘õöõööõ˘öíí˜ö˚õ˝ú¸ùÀû@˚óıñÛó¯û˛ùÙú˛ùúúùùúù˜úùúúùùúùùˆúıõÓú˝ù¥û˝ù˝úıõ˘ö¸í¯ö˚õ˛ú˙ùÀûE˛ñóñóÛñ¯óññ˜û˝ùıú˛ùÚúù˝ú˝ù˜úıõ˛úõÒú˝ù∑û¸ù˛úıõ˘öíö˚í˘ö¸õ˝ú¸ù…ûù?¸óñóÙñó˜ñˆûùùˆú˚ùÒú˛ùÛúıõúõõÒú˝ù∏û˝ù¸ú˜õöõ¯öıí˝ö˛õ˝ú˘ù…ûD¸óñóıñóóˆñ¯û˙ù˙ú˛ùúùùÚú˝ùúù˝ú˛õ¸úÚõÚú˛ùπû¸ù¸úıõ˙öÒíöö˝õ˝ú¯ù…ûHèè¸óÌñ˝ûñ¯û˘ù¸ú˛ùúúùıúùˆú˛õ˚úÛõˆúõ˝ú˛ù∫û˝ù˚úÙõ¸ö˚í˙ëíí¸ö˝õ˛ú˜ù»ûP˛è¸óˆñûû˝ñ˚ûñ˘û˘ùúúùúú˝ùÛúùù¯ú˝õ˚úˆõú˛õÛú˝ùªû˝ù¸úıõöõ˚ö˚í˙ëíí˝ö˛õ¸ú¯ùΔûH˝è˝ó¸ñû˝ñûññÔûùÛúù˜ú˝õ˚úÛõÚú˛ùªû¸ù¸ú¯õöö˛õ¸ö˝íëí˙ëíí˛ö¸õ¸ú˙ùƒûùM˛èóó˙ñ˛ûñûñûñÓûÔù˚úùùúúùùˆú˝õ˙úıõÛú¸ù∫û˛ù˝ú˜õö˛õ˘ö˝í˘ëííöö˝õ¸ú˚ù√ûùûûùRèóèóóˆñÏûÏù    úùúùúùùúúù¯úõõúúõ˘úˆõÚú˝ù∫û˝ù˛úõõööëëö˙õ˜öíí˚ë˛í˛ö¸õ˝ú˙ù û˙ùû˝ùWÛñ˛ûñÓûÂù˝úùù¸ú˛õ˜ú˜õ˝ú¸ù˚ú¸ùªû¸ùúõõööëëâ˛ëööõõöõ˙ö¸í¸ë˝íöö˝õ¸ú˙ùÃû¸ùûùùûûù˛ûùùGÚñû˛ñÚû‡ùúúù˝ú˝õ˜ú¯õ¸ú˚ù˛ú˜ùæû˛ùúõõöö˜ëööõ¯ö˛í¸ëíí˝ö¸õ˛ú˙ùΔû˛ù˜ûAÚñûññÒû‡ù˙ú˝õ¯ú˘õ¸úÌùæûùúúõööÛë˘öíööíí˝ëíí˝ö¸õ˝ú˝ùΔûùûùùÙû3Ìñû˛ùûÁùÌú¸õ¸úùúÏùøûùõööÔë˘öíí˝ë˛í˛ö¸õ˝ú˛ù≤û2ÏñÚûùùûÊùÌú¸õ˚úÏùøûùõöÎë¸ö˝íë˛í˝ö˝õ¸ú¸ù»ûùÏû1ÍñÙû„ù‰úıùûûùùû¸ù¡ûùúõööÈëööíí˛ë˛í˝ö˝õ˝ú¸ùØû.ÍñÒûËù‰úÛù¸ûù¿ûùúõöëëôÁëöí˛ëíí˝ö¸õ˛ú˚ùÆû-ÁñÙû¯ùûÙù‰úÚù˛û˛ù¬ûùúõöëà‚ëöëë¸ö˚õ˛ú˝ù´û/Èñûñûñ¯ûËùÛúùÙúùùúÔùƒûùúõö‹ë˚ö˚õ˛ú˛ùûù´û,‰ñûû˝ñûïùùúÌùÛú˝ù˜úÓù√ûùúõöÿë˛ö˙õ˛ú˝ù©û.˝éñééËñ˝ûùû˘ùúÚù˘úÌù≈ûùúõö‘ëöö˚õ˛ú˝ù®û5ñ¯éññéññéÛñ¸ûùûûÍù˙úÓùΔûùùúõöí—ëö˝õ¸ú¸ùfiûùÕû;ñï˝çéé˝ñéññééÙñ˝û˙ùûû˘ùûËù˚úÓù«ûùõöôÃëöõ˚ú¸ù’ûù’û8˛çïïç˘ïçÚñ˛û˘ùûû˙ù˝ûÍù˚úÒù»ûùùúö«ëöõ˝ú¸ù‚ûùûûù û7ïçÙïñû˙ùû˘ù˙ûÏù˝úÒù…ûùùõöôƒëöõú˚ùÂû˛ùûûùûû˛ùÕûBˆïñïÔñûï˚ùïûùïûùˆûùûù˚úÙù…ûùùõöö¿ëôõ˝ùÁûù˛û˛ùûûùùûùûùÕû%ˆïÌñïïù˝ïÓûù¸úÙù…ûùõö∫ëúùËûÒùÀû7˙ïñ˛ïÌñ˚ïñÌûù˝û˘ùúùù¸úˆùÙûüÿûúõöô∑ëúÍûÛùûùù û<¸ï˘ñïÒñ˝ïùï˛ñÎû˙ù¯úˆùˆûüüûüü€ûúõöí≥ëúÍû˝ùûùùûùùû˝ù…û<ç˛ï    ñçïñïñïññïÒñïùùïïñÁû˝ù˜ú˘ùÚû˝ü›ûúõöô∞ëöùËûù˝û¯ùÀû-ÛïÒñùùïùïñÈû˝ù¯ú˜ùÒûüüflûùúõöô¨ëöùÂû˜ùÀû4åÚïñï˝ñé˙ñûûùùÈû˝ù¯ú˚ùÒû˙ü‡ûúõö¶ëùÂû˝ùûûù…û1ççÛïÒñ˙ûñûñÚû˝ù˜ú˚ùÙû˜ü˜ûüÓûúõö§ëâëùÍûùøûFååçïçˆïıñ˜û˛ñûñûññûññ˙û˝ù¯ú¸ùÛûüû˘üûûüûüüû˝üûüûüˆûüûùúõöûëù®ûD˛åîåï˛çïç¸ïñéé¯ñûñ˙û˛ñóñûûññ˙û¸ù˘ú˙ùÛûÎüû˝ü˚ûüüûûùõööõëú©ûC˛å˛î˝ïççïçïïñé¯ñûû˛ñ˝û˝ñó˝ñ˚û¸ù˘ú˙ùÚûÍüûû˘üûùúõööôúëêëàëú™ûI˚î˘ï˛ñé˘ñû˝ñû˚ñ˛óñóñ˚û¸ù˙ú˘ùÚû·üûúõöôÃëâ˝ë
  10. ôôëêëôëëêôôfiëêê˝àú´ûU¸î˙ïéñé˝ñóñ˝óñóñ¸û¸ù˙ú˙ùÙûüûÍüû˚üûùúõöôœë®®∞˝®ââä˝ãÉ˙åããäÓëöˆë¸àêà±ú¨ûaïî¸ïçç˛ïñééÎñ˝ó˛ñ˝û˝ùïù˝ú¯ùıû‚üûùúõöôëöö¸ëô⁄ë ê∞®àâäãååçéé˛èéé˜ç˛éèéçãäÛëôÙë˛àêëëâõ≠û`˚ïç¸ïÈñóó˚ñûû˚ùïùï¯ùıûüüûÂüûùúõö˛ëö”ëàâäåçé˝èéçåã˛ä˚ë˛ô ëôôëëíìåéèèçÚëâ¯ëöëà˚ëöúÆûSïçïçïïç˛ïÁñó˘ñûïùùïùïï˜ùÙûÙüó˝üóüó˙üûùúõö–ëàâãçé¸èéåãââêêÌëôëäéèéäflëõØû\˛ï˝çñïé˛ñéñ˝óÛñóó˚ñ˝ûùùïï˜ùûùÚû˚üó˝üóóüü¸óüóóüüûùú˛ö—ëôëãç˚èçãâ®∞Âëíééãfiëõ≤ûùûR˚çñ˛éñééè¸ó¯ñóññ˝ó˚ñ˛ûïï˜ùÒû˘ü¯óü˙óüûùú˛öœëôãé¸èéã°––â·ëíåâËëô¯ëõ≥ûùùW˝ç¯éèóñóñó˙ñ˘ó¸ñ˝û˜ùÔûóó˛üÓóûùúööôŒëôôç¸èéã†®âÈë ââëëêààäçèéäô‚ëííëëõæûù¯ûùûq˛ç¸é˚èóññóóñéññ˜ó˚ñ˛ûï˛ùï˝ùÔûüüÏóñùúõö ëôå¸èçIJˆ˛âˆëâ˝ëâëâ˝ë
  11. ®®âäãéèçäàÄ‹ëõÔûùùûûùŸûùûûù¸ûùûùûûùzçç˚é˚è˛ñóóññóñ˘ó¯ñûûù˝ï˝ùÚûóüüóóüóñùúööô ëôëôç¸è寯»»®®©®†àà¸âà˛®àêô˝ëäíãåçéèèç⯮â€ëõùÚû˝ù◊ûùùûùù˛û˛ù˝ûy˙é˚è˛ñ˛óñ˘óˆñùûûñïïñûñÒûüü¸óüÚóûúööô‚ëí„ëåé˝è    éåäâ©©®®»»˙®à©©˛äãå˛çé˚èçì®®âŸëâöùûùù˜û˝ùû˛ù€ûùùûùûùûû˛ù¸ûa˘é¸è˝ñóè˛óè˛ó˘ñûûÚñü˛ó˙ûÎóùúõöøëôëãåçé¸è˛é˘ç˛éèè˛éçåå˙èã®ô©‡ëíˆëöù˚ûùùûùû˙ù€û˜ù˚ûùûg˘éè˛é˝ñóè¸óÈñóñ¸óûûñ˛ûÌóñùúõööôºë˛ôëííäãã˛å˛ç˚å    ããííëàò∞ãé¸èçâ––ëöùûûÙùfiûùùû˚ùûùùûùù˛ûùûûùù]˚éè•Êéèé˝ñó˝èÏñıóññûñÓóñùúõ˛öflëô”ëôôë¸ôë˚ôëëòâé˚èå»œëàöùûû˝ù◊ûùû˘ùûùùûùùûù˛û˛ù^˚éȈÕó˛ñó¸èóóñééñ˝ó¯ñÒóèóóñùõööô˚ëö≠ëö˝ëôöö˛ëã˚èéäÿ®¸ëö”ëâöùûùùûùÿûÙùû˛ùûùû¸ùZ˛éèéψ˜ˆıéñéóóèè˝óññé‚ñÙó èóóñùõööëëíô¥ëöÌëöôëç˚èç°ë®©˛ëí¸ëôô÷ëöùûùŸûùû¯ùûÛùûùN˛èçıˆ˛˜ˆıéñ¸ó‹ñÙóñïõöôööùëíëëôäé˚è    ãëëâëôëëâ¯ëö¸ëíflëâöùûù⁄û˘ùûùùûÒùQèè•ı˚˜˝Õ˛óèñóÁñï¯ñˆóñïõöôö˛ëíõëôã˙èä–ëë©˙ëôöö¸ëí◊ëíù‹û˙ùûùù¸ûù˛ûıùWèÈ˙˜ˆıéèèéÈñééïïˆñ˙óñúõ˛ö⁄ëôÙëííÙëíöÛëíÍëêå˚èéŘëíÕëíùflûùû¸ù˙ûùûùùûÛùYıˆ¯˜ˆÌèñéé˛ñéÔñçÚñ˝óñúõööôöí˝ëö†ëí˚ëå˚è翯»¯ëôö˜ëí÷ëú˜ûùÌû˜ù
  12. ûûùùûûùûùùûÛùZˆˆ˜˝≈ñééñ˛éÒñéïçïïˆñ˛óñïõöëôíëòâé˚èã»âëôÙëíëëö“ëú¯ûùûûù˝ûùù˙û¯ùû˛ùûùûùùûÌù_ı˜ˆıçï˙ç¸ï˛ñïñ˝ïç˝ï˘ñóóññùî˝ö®ëôÎëôäé˚èäË®©ëëô˝ëô˘ëíëëöô˝ëí◊ëúıûùùûÌùûûùûûùùûÏùeˆ˜ˆ˜ˆÏ˛ïçıï¸çï˚çñé˛ñóóñúõ˝öëöëíÂëíÊëôô‚ëôÌëôã˚èéâ»®â˝ëô¯ëöô˚ëö‘ëâëú˜ûùùûÎùûûùùûÍùa˙˜ˆˆ˜˝ˆ˝§ïçç˙ï˛çï˜ç¸éèóñîõööôöŒëöÛëö˛ëô˛ëôÁëíÛëôå˚èçį»®˙ëííö¸ëôëëöÀëú˜ûÍùûùùûËùY˜˜ˆ˛˜¯ˆı¸çïçç¸ïçï˙ç˝é    èñïîõööôëíÛëíô ëô‚ëíıëôôç˚èåË»®ŒëêÏëâëú˚ûùùûÌù˝ûÁùúúa¸ˆ˜˜˙ˆ˜ˆÏ˙çïï¯ç˚é
  13. ïîõööôëíëëí˙ëöfiëôëëöΩëôíé˚èã¯Ë®â˛ëöˆëöˆëö–ëú˛ûù˝ûıùû˘ùûûÍùúù˝ú_¸ˆ˜˜˙ˆ˜ˆ˝§¯ç˘éèèéñîõ˛öôíŒëö˚ëô˙ëöÃëôäé˚èäË©â¯ëôëôÈë˛âêà€ëú˛ûıùû˝ùûÈùúùùúúùù˙ús¸ˆ˛˜ˆ˛˜˛ˆ˜ˆı˚ç˘é
  14. èèéïîõöôöíí˚ëí˛ëöô∫ëö€ëôã˚èéÅ»®âëëí˝ëöÚë˝â˝®©©â©â˛à†Ä˛àââflëâõûû˜ùû˛ùûûÍùúù˜úù˝úx˛ˆ¯˜˝ˆ˜ˆÏéç˘é èèéïîõööôëööí˚ëöëëíµëöÔëöëëö˝ëö˙ëôôå˚èç†»®˚ëíëí˚ë
  15. â©©®»Ë»»©®à¯ëâ©©¸»®®»®®©àflëõûûˆù˛ûÌùúùùÔúÖˆˆ˜˜˛ˆ˛˜ ˝•éÜÜfÜÜááéçî˛öôöö˘ëí˝ëô—ëíëíÛëíıëôÍëô˜ëç˚è    å»®ëíëëô¸ë â©®»»®âëôööõõ˛úùùú˙ù˛úõõö뻯†®˛»®â‡ëâõû¸ù¸ûÓùúùúùÎú}˛ˆÚ˜ˆıé¸Üçîõ¸öíöëëöíëëí˛ëöëëö˜ëí˛ëí‹ëâË¿â‚ëíËëç˚èã¯Ë»àâëëô˝ëâ©©âëöõõú¸ùúú˛õˆö
  16. õõúúùùúö†®˛»©fiëõ˚ùûûùúúùùÁú|˛ˆÒ˜ˆÌféçîõ˝ö˛ëöö¯ëöëëôœë    ôôëë⿆†®©˛ëöÓëööˆë©˛âàà®®ââ˙ëíé˚èä»®â¯ë öõúùùûûùùúõö˛ë©©ëôõùùúê˝»®âflëâõÏùúùù‰úõè˝ˆÒ˜ı¨˚öëëôëíöí˚ëöëë˝öíëôÊëôöë íåãíë®»¿Ë»»âÍëí˝ëàâ©®††˛»¯Ë®˛©¸âêä˚èé⯻®âëöö˛ëöõú˛ùûùùõöëââÎëôëëâõùûúê˝»àfiëâõù˘úùÏúõõú˛õó˝ˆÙ˜ˆ˛˛˝Ùööíööëëôëëíëëôëëíô˛ëííëëíÚëô˛ëööôÂë˛èééã˲»˛ëöíí˜ëô˙ëâ®àëö˝õúú˛õ˛ö    ëë©»®®©®®ã˚è熯»†â¸ëöú˚ùõöâ»»âÓëíëí¸ë
  17. ööúúõòˆ¿®®‹ëõÚù‚ú˚õì˘ˆ˜ˆ˛˜ˆˆ˛˚˝“ö˝ëíëëí¸ëíÔëö¸ëíıëôöÌëôç˝èç¯Ë‡¿»â˛ëíë    ©âöõúùùúõõ¸öõõú˛ùúõöë®»å˚èå»®ëí˛ëö˙ùõë–©â˛ëöÍë ôë©»†àôõê»®®âÈëôÙëö˜ù‡ú˘õöıˆ˛˜˝™ô˛öëëôöÍëôö˚ëíí˜ëôöíÓëôã˝èé®ËË»»®Óë©ëõùùúõ멻˻ˮ©àëâ˛ëöõú˛ùõî˚è
  18. ãË»®ëëôíëõ˚ùõê»®˜ëöëëö¯ëâ⩲뮆ëö˛úöê»àâŸëöùù˛úùúùÂúõúõõú¯õ⸈˜˜ˆˆ˛Ù˝Ùôô¸ëôëëö˚ëíıëöëëôô˝ëöfiëé˝èä¿¿»¿âÒë    ®ëõùûúö»»˝à˚ëô¸ëööùûùùûñèéŎ»»ââ˛ëú¸ùõ¯¯Ë‡»†˙âÒë©®†âööõúùùõô¯†àà◊ëöflúÚõñ˚ˆ˛˝ÍôëëôöÛëöôëö‰ëö˝ëôã˝èç–»‡¿»®âˆë ôëë®öùûùöË»®˛àıëôôëãèèñ˝ùúôË˝»®ââëõ¸ùúë¿˝˲»#®»®®©©®®»Ë»»Ë»®ëëööõõúúùùûùúô¯®âààê⁄ëö˛ëö‡úÙõúú¶ˆˆ˛˛Ì˝¸™ô˛ëööëëöëíôô˛ëíëö‰ëíÚëí¯ëç˝è䯻˿»®â˝ëôôëëöëëâëúùùú꯻»˛à¯ëöôëëôôëç¸èñú˛ùúö®˝»®©âöú¸ùúõõöô˝ëâëââ¸ëöö˛õ˛ú˘ù
  19. úô¯®âàëêàà⁄ëôëëôëöÁú¯õú˚õ˛úõúñ˛È˝Ûëëíıëööëö˙ëí˘ëí˘ëíÎëí˚ëíé˛èéâ»¿¿»©â˙ëôë©íúùùõ˯»†àà˙ëöíö˛ôëëôäé¸èéÇËöú˛ùúö®Ë¿˝»©ëöõúúÓù˝úõööú˚ùõ®¯»©¸ëê„ëíÚëöõ˝úõ˝úõ¯úÁõíÁ˝ ôëí˘ëôëô˝ëííëëô˚ëô÷ëôì˝è箻˿»»®â˚ëôëö˛ùö¯¿à˛ëí˚ë˛öíëôëå˚èå¿–®»ëõ˝ùúö®˝»©©â˛ëöëë˝ö˛õ˚öí¸ëâëõ˚ùúö©ââ÷ëíıëõúõ˛ú˝õ˚úÒõúıõàÁ˝¸íô˘ëôö˜ëô˛öõõúúëëíí¯ëíëôıëíÚëôã˝èç©˝»©â˚ëõ˛ùõ†à˘ëööíí˛ëôíé¸èé䯻©¸ëú˝ùúö˛Ë»»©Ùëâˆëöú˚ùõ√ëõúõõúõõ˝úÓõúúıõ†Ê˝
  20. Ûöíëôöëëíëö˚ëôööõõú˝ùûûú˛ëí˝ëö„ëí˝ëôôäé˛èéâÿ»‡‡»®à˝ëö˛ùõ»»â˜ëíëëöôëå˚èã»©â˝ëíëëöú˝ùõë‡‡»©˘ëôÚëö˙ùö¿”ëíö¸ë ôëëíëëôëëöõú˛õúúÒõú¸õúúıõè½ ô˘ëôööõõúúˆùõ¸ëí¸ëí˛ëôëô¸ëíÏëíôíé˝èä–»»Ë»†®ââëúùùúêË»àëëí¸ëöô¸ëãé¸èå°ÿ®â˛ëôëëô˛ëöõ¸ùöË»†âëí¸ëõ˚ùúôâ⁄ëôÌëöëëíõú‹õúõú|½¸ä˛ëööõõúú˛ùûÙùö˚ëí˚ëíëôíıëíÔëôå˝èå®–˝»®»õ˛ùô¯ËË®ıëôëãé¸èåÅ–®â¸ëô˛ö¸ëöúùùúôëâÏëôëëú˚ùõį»œëôıëöíô›õ¸ú}ν˝˛˛˝”ìúú˝ùûÛùû˛ùÎëöëëí˚ëíö¸ëí˘ëíëôäç˛èé䮲»ô˛ùõ¯ËË¿âıëãé˝èéåâ–®â¸ëôëöô˛ëí˝ëôúúËëôö˙ùõ¯»â‘ëôÔëôëôflõ˚úèÒ˝˝˛˛˝Ù””´´¨¨¥Íùûú¯ëöˆëô˛ë˛í˚ëí¸ëíˆëêÇç˛èéã®õ˛ùëË»»©˘ëêâåé˝èçã©®à˜ëôëôö˛ëöëôëôöôô˝ëí˝ëôëöˆëö˙ùö¯¿©⁄ëô˝ëöıëô˜ëô‡õú¸õܘ˝˝˛˛˝¸””´´¥˛î¸¨úÍùõ¯ëôÒëí˝ëíÏëêàäç˛èéãë˛ùõ¯Ë‡»»®àââê∞±âãç˝èéåäà®˘ë ôööíëôëëöôëë˚ö¸ëíöëëôÛëõ˙ùô¯Ë®â‹ëíÚëôëöëë˛í˜ëö‹õô˝˝˝˛˛˝¸””´´¨îîåı¨ÍùöëôëëöÚëôëëí˜ëíëôëí˘ëí˙ëôôâãçèèñ˛ùíËË–˛®©ääåé˝èçãäâê˘ëöëë˝ö˛ë    ööëööôëöôô˘ëôëöô˛ëö˘ëõ˚ùúë¯Ë®â’ëôö˜ëöëôô˙ëí¸ë‰õöõ˚ö|˛˛˛˝¸””´¨¨îî¥Ô¨îÎùö˛ëííëööôÊëöÏëêêíã˝ùèéé˛ç˛é˛èéçãäâëê˘ëíëëí¸ëô˛ëöëí˛öôô¯ëôôëôëëí¯ëú˚ùú௻®â÷ëíıëôÔëÍõÙöã””´¨¨îîå˨ú˙ùûıùú¸ëí˛öëö˙ëôí˙ëíëöí‚ëô˛ùú˛ä
  21. ãÉãåããäâëëô˜ëöíëí¸ëôöô¸ëô˝ëö˚ëí˛ëôöÙëú˚ùõ»®’ëôôëô˝ëíöö˛ëôÓëöˆõöõõöõÔöôî¥˝ù˙û¯ùõô˚ëôô˜ëí˚ëö˛ëööëôÔëôôëí˚ëö˛ùõ¯¯¯–ë˛ôëëôëí˜ëö¸ëôöíë˛öíëëôëôö˘ëí˛ö˘ëôëô˛ëö˙ùö¯Ë®©€ëôëëí˙ëí˛ëôëôëëô¯ëöˆëöõö¸õöõõööõÌößfl¨îùù¯û˚ùûûk†∞®©˛ë˛ôë±π˛©â˛ëííöôëí¸ëö˚ëôôÏëö˛ùõ¿‡»©˚ëí˝ëö¸ëö˙ë˛öëëí˝ö˝ôö˝ëíëëöôô˘ëôö˝ëö˙ùô¯»®âÚëôÊëô˚ëí˘ëí¸ëíëëí˝ëö˙ëíö¸õöö˛õ˚öõ˛öõ¯öõõõfi¨ú˜û˝ù˝û>?>∏»®ëë*<=>=;    ∏¿»®˝ëíıëö˚ëö¯ëö˘ëõ˛ùö‡¿»©˝ëíëöô˛ö ëëôëôôööíöëöí˙ëôÚëõ˚ùúô¯»®©Êëâëëê˛àêÎëö˚ëí˝ëô˝ëôëô˙ëöõ˛ö˙õö˘õööìí¸öõöØfi¨¥ù˜ûùù˝ûï˝?:∏∞=˙?:∏Ë»®âë¸ô±©©ââÏëöí˙ëõ˛ùõˇˮ˚ëô˘ëöëöö˛ëöôë˝ö
  22. ôëôëööôëööô˛ëôô˛ëí˛ëô¯ëõ˚ùú௻©âÁëââ©©â˝à†àëëààê¸ëö˙ëôëëô˚ëí¸ëô˝ëôô˘ë¸öõöö¯õööõˆö©Ï¨§≈˝Âƒ˘¨ú˚ù˝ûùù˝û-˝?>»‡>¯?:∏»»±ë*<==<∞∞®©â‰ëõ˛ùõ»‡¿»ıëö˝ëööëôë˛ôëôööë˛öëöëëôö˘ëô˝ëíô˙ëõ˚ùõ¿»©âÏë˛ôë˝∞±±∞∞±∞∏®†˛®©âÒëô˘ëííëëööô˙ëôëëíëë˛öˆõÒöµÌ¨˙ÂÊ≈˘¨Òù5¸?˜?>»»∏
  23. >˚?=∞»¿©˛ëíÙëö˜ëõ˛ùõ¿¿Ë»â˛ë    íëëöëëöëëí¸ëööëô˛ëôôëëôöö˝ëö˛ë˛öëëöô¸ëô˚ëú˚ùö¯Ë»®Úë ±±∞®àâijJKK3˛KT¸K
  24. JI`∏∞®®»®®©Òëô˛ëíö¸ëöëö˘ëôëí˛ëö˘õÌöΩÓ¨≈˚Â≈˜¨îÛùúâ!)*34Aâ!*23<==>˛?    ∏2¯?>∞»®âÙëíöëííëëö˝ëíëö˛ùú»‡Ë»¿â˙ëöô˚ëíö˚ëööôôöí˛ö˘ë˛ô˝ëôëëô˚ëöú˚ùöË»àı뱩ÄAJ+34¸54L˘KLTU55TJ®©®»»†â˜ëö¸ëíÒëôëëö˛ëö˛ëöö˛õ˚öíöííÙö÷¯¨˝≈ƒ¨´´¨¨¸Â≈Ù¨ú˛ùûû¯ù˛ë˛ôëë˙ôëâÅ)âë3>¯?;∏Ë»±˛ô∏∞®ââ˙ëô˛ëö˙ëö˝ùâ»»¿¿©¸ë˛öô˙ëööëö˛ëí˙ö˚ëí˙ëí˝ëô¸ëö˙ùô»®©˘ë±±âiJK45˛654KJjâë˚ôë¸ô ëiK66Tië©»»†â˝ëô˛ëô˛ëöëö˛ë
  25. ôôëë±∞±®ààâ˛ëöö˝ëôöí˛ëÛöíıö—˙¨≈˙ƒ´´§ÂÂ≈§Ò¨ù˝û¸ù
  26. ûùùú∏∏∞±©ââ˝ëí˝ë˛ôëëôôâ*3=>˝?=∞∞∏)3;;:∏∞»®âëëíëöÙëú˛ùö»¿»©ëëí˚ëôëíë˙ö˛ë˚öÁëõ˚ùú믻®â˚ëôëiJ355˛65TJiâëëôôˆëôëëôëôj565i®®©®˝ëôôöö˙ëôëëô*<˛><∞∞¿»©˛ëô˝ëô˚ë˚öí˚öí¯öííö‡˚¨≈¯Â˛¨≈§Ú¨§≈Âî˝û˝ù˝û
  27. l=;:Ë∞∞®®â¸ëí˝ëíëë˝ôëa*3=<π)<˚?<∞»®©¯ëööíëöëëöú˛ùõ»¿»»â¯ëôôëíöëöëë˝öíë˝ö˝ëôëëö˛ëô¸ëííëô˝ëõ˚ùúà»®â˝ëôëiKT5˝65SIı±Òëö˛ë ôôöôL55Jêâëâ˚ëöô¸ëôôöëÅ=˙?=∞»»â˝ëô˜ë˝öíöíí¯öí˛öíöö휸¨§˙ƒ̨≈˝ÂÃîûûùú˛ù˝û5˝?>=:∞»©ô˛ëâ˛ëí¯ë˝ôëë<˘?>˛»â¯ëöëööíëëö˛ùú©»‡Ë»®ëö¯ëö˝ëíëëô˛öôöö˚ëö˘ëöëëôëíëí˛ëú˚ùõ»©â˝ëôjL5˝654J†∞∞˝ëôÔëôööëâiàêà˛ëââ˛ëôö˝ëôö*<3∏¯?    >®‡®âëëöö¯ë˛íÓöõ˛öº¸¨ƒ˛Â≈ƒÍ¨≈¸Â¨˘ùûûù>˚?
  28. :∞»©*ëô±†àâ˚ëíˆë*=˙?<∏Ë»©˘ëíëëô¸ëú˛ùö»»Ë»®âëô¯ëííëëíëöëô˛ö˙ëôôëöú˚ùö»â˝ëôjL6655653I–∞©Îë˛öôô˛ë±®∞∏AJⲩ¸ë öëôa>??=∏–Ë2=˙?;∏‡»âë˛ôëâ˜ëö˘õıöõõflÂ≈ƒ´´§ÂƒÓ¨≈Â≈˚¨˝≈ƒî˘ùûî¸?>∏»±2?>3…∏®»®âÙëôëëôö*=¸?>–»»©¸ëô˛ëôööëëöëëõ˛ùú©»»‡»©ëöôôëööô˘ëööëôöíëöö˜ëââ©˝â©ââëâ©ëú˚ùô¯Ë®â¸ëj56˛564Iÿ–»©â˘ëôôÙëö˝ë
  29. öë∞`J454A©â˚ëôëë>˛?>®∞∞ôâ3=˝?=∏»∞ôâ*2∏∞®®â˙ëö˙õıöõöŸ˛ÂϨ§¸Âı¨ú˙ù ûã=>>=2©∞ââô<˛?>;    ∏∞»©©âÚëööb=˛?=∞»®±˛ëââ˛ë    öíööëôöôëí˝ù
  30. ö»‡Ë»ëëööô˙ëööô˛ëô˝ëôö¸ë˛±®±˚∞˛–»»ö˚ùúô»»â˚ë56˝53–ÿË»¿©âÒëâ˙ëôôëâjKTU53I†®â˙ëôô3¸?1∏‡»âëôöA3>?<±±<¸?=∏»»©ëëôíëëöö˛õÙöííööÁƒ̨§≈˚´´˜¨î˘ùõôôëôô˝ëô=˚?<∏∞»®©˘ëöëëíí˛ëôôA<?3πô±Åa¡∞∞®®ââëëööëôööëëõ˛ùú©»Ë‡¿©ëëôôííô¯ëö˙ëôëâiJKKST44TTKKJJIA¿®õ˚ùúே»®â¸ëj66˝5
  31. `∏––»»®©®©©ˆâ˛ë˛ôëâjrkK4556USP∏®˝ë˛ö˛ëô4¸?;∏¿»â˛ë˛ô*Aô!¯?:∏Ë»®â˛ëöô˚öíˆöíööĄ̂§˘Âƒ´ı¨ú˙ùöëëöí¸ëô*˘?<Ë»»ÄëôöâëÅ4>˛?>;Ë∞»»©˝ëöíô˛ëú˛ùõ˛»Ë»©˛ëôöôëë˛öíöö˛ëöô˛ëâJT˝5U5˛U5˚655Luu}˛ù    ö¯¯»¿¿»®®©˛âëK5˝65KIa®®ˆ∞ ±∞±∞ââijKKLL˛5¸64Iÿ–†à˚ë˛öíöö*¸?
  32. <∏»Ë®âëëíëë˛ôB<>˘?∏‡»â˘ë˛ö    íööííööíöö˝íöĄ́§˙ƒ´´Ù¨˚ùú˘ëíöëô4˘?>∏»®âÛëôëë˛ô*˙?>∞Ë»âëëô˚ëö˝ùë»»¿»»â˚ëôöôôöö¸ë
  33. ôôjL664SJiâ˛ëôëëjjKLT5˛6˛5
  34. UML2)I¿–ÿÿ–¸»®±âJLU5˛655T4KK+KKRKK++KT,T˛5UU˛L¸565R––â˛ëöôöëëôööíëëöö=˝?>»»Ë†â˚ë˛öôâ*=˚?=∏»»©˝ôëë˛âí˘öíööíí˛öÙÚ¨§˙¨ƒ≈≈ƒ¨î˝ùûú¸ëöö¸ëö*>˝?><–®±˛ëââ˙ëô˙ëöëôA>˚?>‡∞Ë®˚ëíëöëõ˛ùú뻿ˇ»â˛ëöö˛ëööí˛ë    öôjT653A®∞˝ë˝öë˝ôëõ}umM5˚6    543RII»–ÿ–˛» –∞∞©aIJKKL,L˛U55˛U L4LLKKJjjâëëK¸56Ta∏»˚ë˛öíöô˙ë=˝?    ∞‡†ëëíöô˛ëöëëöôöâ3=˛?>∞»∞â*4<<:∏®»®í˘öõ˚öÂÛ¨≈§¨ú˝ùõ¸ëö˝ëíëëôôa*21∏∞âô4>!π®»®â˚ëí˝ëíëôëëöë<˚?:∏¿»â˛ëôö˛ëöëõ˛ùú©»»‡»»©ë˝ö˙ë
  35. ôíL66TAÿ®âí˛ëôëö¸ëâôú¸ù|K355˙6543JI@»˝–»–¸∞±±˛ëâ˚ë˘ôjU6˛565K»–®ëöö˝ëíôöí¯ëô*=>>2∞»®âëëôööëëôôëëöö˛ôi3><ëë2>˚?<Ë∞Ë»ëöˆõööÂı¨§˛Âƒ´´Á¨¥˝ùöëëíöˆë˛ôòêëëô*˛?∏»»®â˝ëô˜ëöôö+¸?;∏¿»©˛ë˛öëöíëëú˛ù õ®»»‡‡®âëëöô˚ë öjU65J––®âöë˝ö˙ëõ˚ù    úôÿ∞âiKL55˛65˛6 5543*II¿–ÿ––˝»®®©®©â©â˙ëôëL66˛564I∞»©¯ëôö˝ëâjâëâëôôâ3<:∞»»â˛ëööëëô˛ö
  36. ëëööëôôöëôb¯?=‡®Ë®öˆõöõ¯ˆ¨≈˝Â≈´´Ê¨î˛ùö˛ëí¸ëöí˛ëöö¸ëöö=˝?;∏∞»®©˚ëôôí¸ëôëööb>˛?∞¿®©˚ëöö˝ëú˛ùõ®˝»®â¸ëíëëôj565Iÿ»®âëöëööôëëööëëöú¸ùúö–©âëëôôërKL5566˛5˝654TSJII–˛ÿ˝–»®¿©©˛â±âT6˝56,¿–†ââëëââë±∞±∞òâaJKLLJ˝ëâ=˛?<∏¿»â˛ëíëëô˝öôôööëëööôëë*4>˙?<∏»»âöıõ‚˜¨≈¸Âƒ´´Â¨úûú˚ëö¸ëöëôëëíëë˝ö=¸?=∏»»®Ùë íëôëôí<?<ë±±˘ëôöôö˛ëú˛ùúë…˝»©â¸ë    ôj565Iÿ‡»©˛ë    ööôëëôëëöõ˚ùõà®â˙ëöôëëjKLU5˛6˛5˝6˛5 433RII( »–ÿ––˛ÿI56¸5J∞±±ë±±∞±®âaIJ*3˛4KJâ˚ë>˝?;∏Ë»â¸ëôëëôööë˛ö˛ë˚öí*=¸?>Ë»»âëöˆõÛ¯¨˚Â≈´„¨îùõëíö˛ëö˘ë    öëëôöíôôö3˚?>∏»»©˛ëô˛ëô˛ëôöôôë˛ö *ëôâ!)!±∞®†©˛ëô¸ëõ˛ùúí˛»¿»»©˛ëôj566JÿË»©ëëöëôöëô˛ëõ˚ùõ믻â˛ëí˙ëíö˛ôëjJKTU5˝6˛5˚6˛5    T4S3SR*R56¸5KA¸JK+T4˛5U4KJq˝ôöëöëô3¸?;∏Ë»â˚ëôëëí¸öíëëööô˛ëööôâ+=˛?¿®®˛ë˚öõõ˛ö‘˘¨˚ƒ‡¨úöëööëíëôöö=˙?;»»®˛ë íöëööëöôöëëö˝ëöô4˝?
  37. >;»∞»®âëëíô˝ëöú˛ùõâ˝»®â±â566Kÿ˛»âíí¸ëâëõ˚ùõë©ââ˛ëö˛ëô˝ëöö˛ë¸ôëjjKLLU5Ô6˘5˙65ULKJiëë˛ô˝öëô˛ö<¸?;∏‡»©ëëöö˚ëôöôööëôëëööëëíöëëôöôi33ëëâëôôëëí˘ö⁄¯¨§ƒƒ§fi¨¥öôííëëí˜ëö˚ëööí4˚?=‡®©˙ëöôôëííô˛ëíëëö+˚?=®»®¸ëööëëöõ˛ùúöà˝»®∞L664®˛»©¸ë©©ëõ¸ùúõë–©˙ëíöëëô˚ëô˝ëööí˚ôöíjjK˛L˛U˛56˘56˝5U˛LKkjjëööôô˝öëí˛ö¸ô3¸?
  38. :∏‡»âëëöëöô˝ëôö˛ë˙ö¸ëööëôööëô3?=3©∞©âí˚öÌ˚¨≈ÿ¨ÀÛôëëöëëöëëôëëööëöëöíëôôí˛ö    ôä*343!ëôâ˙ëô˝ëööëëö˝ëöö+˚?=∞¿Ë©¸ëôë˛ôöõ˛ùúõë©»–J656Jÿ‡Ë»®©®©®ëöú¸ùúö⻩˝ëöö˝ëô˚ëöô˛ëö˛ëô˚ëíööôöôôöíöëíâj˛rU¸564)IÅâë˚ö˛ô˙ö ôööíöôëôëöë>˝?:∏¿»â˛ëö˚ëôööô˛ëôô¸ëöëôí¸öëö+˛?>∏»©ë¸öÔ¸¨•Ê≈⁄¨å”˝ ôëëöëíöëööëííëôö˝ëíööôöë˚ôë4>"ô˛âëëöôëôôööëíëëööôôëö3˚?∏Ë»âëöôë˛ô˝ëôõùùûùúöë5664˛¯–©ëööõùûûùùúöë©©˙ëöô¯ëíö¸ëôööëëö˜ëö¸ëôöôôíT6˝563»ÿëôô˝öí˝öô˜öëö˛ëôôöb>˛?(∏»»ëíôëëôëôëíôíöôôëëööëôëôöôëëöëöôöëôôö*¸?∞»©í˝ö¸¨˛Â⁄¨ ¸©ôíëëööë˛öëëô˙öôöô˛ëööôöô4??=±®»®â˝ëöôëëíöë˛öôë˛ö4¸?:∏ˆâëöôöôöëëöö˛ë
  39. ôöõúùùu556t˝õúúùùûùùúõöëâ©ëëöëëôëööôëôíëë˛öôôëëô¸ëôöëöí¸öëôëëöíööëôëëöëôíU6˛566S–»¿ëöë˝öô˛öííôô˝öëööëöôö˛ô˛öí3>?2ë©âëëôëôô˛öë˛öëôëôöôôëëöëëööôööëôööëô*¸?<∏‡»ë˝öfl˝¨•˛Âƒ⁄¨Ù˛˝ÛôííÓöôëôëööëö*˝?;∏¿‡»â˛ëôíëëöëí˛öí˝öô<˝?Ë®âëíöëëôöëöëöëëô¸ëööM65U˘úõõö˙ëí˛ëôööíëöë¸öëöëëô˜ëöíëôôööëööëëíëöëô˛ëôj56˛565Jÿ»®â˛ëô˛öô˚öôˆö˝íëëôöëaâ˝ë˝öë˝öëôôëöô˝ëôöôëëöôëôëôööôëöä¸?>˛»©˝ö„˝¨˝Â≈⁄¨˝˛˛˝ ˜öô˘ö
  40. ôööôëëöôöö+¸?∞¿Ë®˛ëôôöôôöôë¯ö=??3±˜ëô¸ëíôíëëôë556T®ËË»®ıëöëëíëôôö˛ëööëëöëë˛öëöö¸ëöëëí˝ëô˛ëöôëôëëôöíöôj56˛565Iÿ»©¸ëööëöôôöëíööôööôöô¸öëö˛ë˚ôëâ˝ë˛öôööë˛öëô˝ëôëô˛öëëô˛ëôööôëöi¸?=∏»»âë˛öÛ˛¨≈˝Â≈€¨ À˛˝˝˛¸íööëöíí˜ö˝ëö˝ëööô*¸?=∏®˛ë˚öëëô˙öëëöë=3öëôôë∞®®©©˝ëôëëöíôôëôôj656Kÿ˛Ë©ëöô˚ëíí˝ëööëôíëöôíöôöëëô˛öëôöôë˛ö˛ëô˛ëöëëôíëëö˛ëöíôôk56˛565Iÿ»©˛ëô˝öô¸öôööôıöëëôë*3;2®®âëööëööôôööë˝öô˛ëôëíöôööëí˛öôöëëöôí¸?:∏»®ëë˛ö˛¨¸Â≈‹¨î”˛˝˝˛˝Ûô˚öíí˙öíëë˛ôëö˛ëôö=¸?:∏ëôôöëööíööíëöí¸öôöíôôööâ*33∞∞»»®â¸ëôíôööëôK656J–‡¿Ë©ˆëöëë˛öëëöíëëööííôíôëôöëëö˝ëô˙ë˛öëë˘öôK6˝564 –»©˛ëôöô˛öôöô˝öëôöí¸öëöëôôööô3¸?∞»àë˝öô˝öôö˚ë    ôööôôëëôëë˛öëôôööôí>˛?
  41. ;∏©©ëëôöíöϨ¨≈¸Âƒ‹¨î¸˛˛˝˝˛˝™ˆöôöö˝ëôôöö˛ë˛öâ>¸?ëöö˛ë
  42. ííëööííëôëô˛ö˝ëöB¸?=∞¿Ë®˝ë¸ö ôôöL656J–Ë»»©˝ëôëëôëëôôööëöôôëô¸ö˝ôööôëëô˛ö¸ëôööëöíööë˛öëôööôöL6˝5
  43. 64–»âëëöëôÒöí˝öôööôôöö4¸?<∏¿»âööë˝öôëöëôôëôöëëôöôöôôö˛ôíôöëëôööôô<=3!ôââë˚öȨ¨˚´€¨˝˛˛˛˝˛Ùöôíˆöëíëí¸ö¸ëôä=˝?=∞ëë˝öí˝ëööôöííööëëâëôë>˚?∞»»âííëë˛öíëööM656K–˻˩ë˛öôëô˛öôô¯öôíëôö˛ôöô˛ëíëôôëë˘öëôöëöëô¸öL6˝5 6S®–»âëôëëöô˛öëööô¯öô¸öíööëöJ˚?9∏»®âë˚öëööôööôöëëôôëööë˝öôëööôôëôëëôööôëââëíë¸öˆ˛¨≈ÂÂ≈¨´‹¨´˛˛˝˛˝˝ ôëí˘öíööë˙ö¸ë˛öB3=>>ëööôöíöíëíëëö˝ëôôëí˛ëö*˚?<∏»»âë˛öëëööíëëU656*–‡¿Ëâöëööëëôíöôëô˝öôëô˛ëôë¯ö˛ëöô˛ö˛ôëëööô˛ëôëööëööL6˛5    66R–»®©ëöô˛öëöë˙öôööëôööë˚öí˛ö3¸?=∏»»©ë˛öôô˛öôëöö˚ë˛ôöôôëëööôëôëöôööôB>3â±»®âëööëööô˜¨•˝¨´´‹¨¥”˛˝˝˛˛˝˛¸íıö˛í
  44. öíôôöíëëôëë˛öôöô˛ëôöôöëëöö˘ë
  45. ôëôëëöíëëö5¸?=∏»®âëööôëëööôôöL656*ÿ»¿»âí˝ëôëëöëí˛ö˛ëôôöí˝ö ôëëôöííëôôëëô˛öëôôëëíëëö˚ëôíU6˛565Jÿ»©˛ë˙öô¯öë˝öôöíööíôô˛ö3¸?:∏»®âëô˛öôöô˛öëô¸öëôëë˛öôöíöëëôôööëëô4??>∞Ë»âíöôôö롧Ê≈◊¨îÙ˛˛˛˝˛˛˝ÛÙöíí˚ö
  46. ëëöíëííëöôë˛ö*böí¸ö
  47. íëôöôëôíöôí˛öëíôä¸?<∏»âëôí˛ëööë˛öL656*ÿ˛Ëë˛öëöôöôëöô˛ö    ëíëôëöôëôö˛ëô˝ëíëíööô˛öëëöôëëí˝öëëíôj56˛565)ÿ»ëëíë¸öôöëí˛öô˛í    ööëööôöííô˝öë˛öí>˛?>∞»»âë˚öôëöë˝öë˛öëë˛öë˛ö ëëôööôíôëôö>˛? >»»®ëööôöôı≈ÂÂ≈◊¨˝˛˛˝˛˛˝˛˛˝ ˝öôÒöô˘ö
  48. ôöB>?=ô©ëöë˛íöôöëôöö˛ëöô˛íôö4˝?∞©ëíöëí˛öíëôëôK6563ÿ‡‡Ëâööôëöëôöö˛ôëôëíöôôëëööëííëô˝ëôöëëöôëöíëôöôëëíööëöëëôj56˛565)ÿ»âë˚öí¸öë˝öô˛ö¸ôëâ¸ëââëëô2˛?;∏»©ëë˛öí˝öë˝ö
  49. ëöëëôôööôôë˝ö    ëëööëëôôöb¸?
  50. ;∏‡¿âëôöëöË˝Â≈ÿ¨˝˛˝˝˛˛¸˝¸í˘öô¸öííöëˆöô*˛?>Ë»†˘ëôööôöëöëöëööëöí>??4±ââëôëëíô˛ö˛ëôK6564¿˛ËÅëö˛ë öôôöëôôëëôöö¸ëô˜ëöíëôôëëöëëôööôëíööëëôK56˛5 64!ÿ©ëôöëôöííÙöôëôââ
  51. brkcrkckssíäjôi3;∏ëëíô˝öôëööë˚öí˛öë˛öëë˝öôöôëöôöö3¸?=∏»»˛ëöö낸Ÿ¨À˛ˆ˝Û˜öëöëëıöôööô>˝?:∏Ë˚ë öëööôëôôöôöô¸ö+>*öëëí˚öôôöôôöör˝5I˝»˛ë˚öëëíöëööôô˝ëôëëöö˝ëô¸ë˛ôöôíëôö˛ëöëëôK6˝5 64    –©ëööëööí˝öô˝ö
  52. ôöôëâjckk˝lksllstsìl‰ttlìã
  53. ¡˝ô
  54. íôöôöôöëôöë˛öíôëí˝öô˝öôôëô˛öô=¸?<∏»©âë˛öô‹¸Â§€¨¥”˛ı˝ Èöë˛öB¸?=∏Ë¿˝ëöëë˚öôëôëööë˝öôô˙ëöö˝ëô˛öU656K±˝»    ëöëööôôöôö˛ë    ôööôëôíöôë˝öííöô˛ëöôöôô˛öôô˚öôL6˝563‡–©ëöíÙö)ëëijsslkk,$lkkckãÉ#c$Cs-˜˜ˆı$ âôëí˛ëöëë˛ö˛ô˛öëë˛ö ëööôëöôööëöä˚?∞»˛ëô˛ö˸ƒ⁄¨¸˛ı˝¸íôˆöëëˆöôöB˚?    ∞Ëâ˛ëôôö˛ëö˛ë˝ö ëëôööJ**Åπ®©©¸ë ôëëöôëôK656L±˝»©ëëöö˛ôëöôëö˛ôëëôöôëë˛ô˝öôôöë˛öôë˛ô    ööíôôööíM6˛5    65*––©âëöô˝öô˚öëajk˝l˛kLsDlìãklc˜˜Ï˝ÛÈêêâ˝ëööôëëöö¸ëöô¸öô¸ö3˝?>∞©âëëôë˛öÚ¸ÂȨ§˚¨§˝≈ƒ¨´´¸ı˝˛˝Ûööë¯öëëÛö>¸?;∏Ëëöëëô˛ëööôëí˛öëëööôöö>˛?
  55. <    ∞»®âëëööô˛ëööj˝5j∞»‡»»©ëö˚ëôëëô˛ë˛öôöôëíëôöö˝ôë˛öôööëë˚örU6˛565Jÿ»©ëë¸öëë¸ö3ëëäkllkkllslõõìckklllcDtsˆısÔ‰ÏÚ®∞®©â¸ëöôöëëôëë˜ö    ôô+>>=3°ëâ˛ëôöô˛öÚ˝Âƒ´Ï¨˝Â•˛¨≈˙ƒ´Ò˝ ˜öëÛöôô*¸?=∞»±˛öôëë˛öëí˛ö˛ôööôöö4˝?>∞»»â˛ëôööëööôL656L±»‡‡»©ëëöôíôë˛ö ëíöôëöôôöëëôë˝öëëööëëôëíôöëööôôöôJ56˛565Aÿ»âëë˝öô˚öëëöõsCã˛ì    dtlkõk##Dl˛k lkllc ˇ˛ÓÌ˝ˆÑlˇˇÄ®»®©âëëöëëööëˆöôöíôôëôô˛ëôë˙öÙ˛ÂƒÎ¨˚Â≈¨¯Â≈À˚˝˝˛˚˝¸ëÈöëëôB=˝?
  56. ∞©ôôöëô˝ëôíöëëöôôëöëöö*¸?=∞»»®ëëôëöëôëööj˛56j±‡Ë»»©˛ë˛öëööôí˝ë˛öëëööëööôëööôëôôíëôôëöôöôôK6˝5    64@–®âëíöô˝öô˛öëëí˛õ{õkk#kslDltsllc$l˛tldD ˛˜Ó˜˛̉Ә˜Úê®»»®©â˛ëô¸öôô¸ö ôô==A±©®âëööë˙ö˚≈§Í¨≈˚Â≈¨ƒ≈˙Â≈Ã˛˛˝˛˚˜ˆ¸˝Û˝öôë˙öô¯ö ôôöíôôA+33a멯ë˛öô˛öíëööôöí˚?∞»®â˛ë˛öëôëôL656Tâ»Ë‡»©âëëöëöíöô˛ëöë¸öëô˝öëëö˝ë ôööëööíööíL6˛565K––†âëëöôôöíööôööëâ£˛õl˛s˝kDkctt{ldD#kõììdl ˛ˆ‰lı˝Cã˛ò˝»®©˛ëöëööë˙ö +??>∞»©âëöô˙öÛ˨≈¸Â≈¨´´˛¨
  57. §≈≈ÂÂ§Ì˛˝˝ˆ¯˜¸˝™˛öôôÒöôööëëô¸öô˙ëôööë˛öô˚öôôöö=¸?∏»®˝ëôöôööëôëU656K∞»¿¿»©âëë˝ö¸ë˛öëööëôöôëöôööôô˙öôööjU6˛5>65Iÿ»©ëëööëôíôööôöëâìckìks#DsìssllstõìkdlckõkccskC„§Éll˛lÌÔ˙ˆÚò¿ËË»»©˛ëöô˙öôí˝?>˛»©ë˛öôô˝öˇË¨≈˝Âƒ¨´ˆ¨ı˛˝˛˜˜ˆ˝˝¸íööôô˛öôô˘öôëô¸ëööôöí*3Ş© ëëöôëöëööôöëë˛öô˝ö3˝?>»»©˛ëôëë˛öëôöj6556J∞»‡»»®ëëööôëëíöôôöëöë˘öë˛öôëööôë˝öK6655663¿∏©âëíë˝ö(ëöôööëëöõdkìskk$#ÉsãÉctlkõcckìkklkCCìsìk˛"ckÌÔlј˜˜˜h໿˻©©âëë˘ö4¸?∞»©ëë˛ô¸öˆË¨≈˛Âƒ´´ı¨˝˛˝˛˛ˆˆ˘˜˛˝˝ÛôöëÛöëöë˛ôë˝ö B>??∏»»âëöë¸öëë˝öëôôöëôB˝?:∏»©ëëö˛ôëöíí˝öK6565i∞˝»©âëëô˛öôëôööëô˚öíë˝öíô˛öíöôrM6˛565J–±©âë˛öë˙öôëlsstõskÉCkkãsDDlt˛kDCksãkcCC˛kDd˛ˆ˝˜ˇl˛˛˛ ˜˜à‡¿ËË»»®ë˙öB˚?∞»†ë˛öô¸ö˛Â≈¨´Ï¨≈ƒ´´ı¨´˛˛˚˝˛˛ˆˆ˛˜˛¸˝™Úö˝ëöô˝öô*˝?<∞Ë¿©ëöô˝öíöôë¸ö ëëôöí??>2±®©˛ëöëëôöôôí˛öôôL656Ui±»»¿»®˝ë öëôööíöôëöôë˛öëöôöôööëööëôöK5655653@±©˛ëöí¯öëäìskks{sdDlslDtlltsCc˛ks$#cktd˛l˜˜˛˜˜Ï¸˜˜ã¸ˇ˝Ë∞ˇ‡¿»»®âëöëööô>˚?»¿âëô¸öôëöԲ´´Ï¨ƒ´´ı¨å”˛Ù˝˛˚˝Ùöôôöô¸öô˝öëëöë˚öë>˝?>»»®ëô˛öë˘öô˛öëöö+*öôââëëíööëô˛ëôë˝öëöL656Ui∞¸»â˝ëô¸öíëëöííë˜ö ôjU655664I–±˛ë˘öë˛öâkt˛lEl|t$ttl{k$DkksDDlsldtsllt˛ltlı˜Ô˛˜˛ıì˚˛˜ˆ˜˜®¿ËË¿˛»©ëëöö3˚?:∏»âëë˚öôöôÙ˛Âƒ´´Ì¨§Ú¨îÙ˛ı˝ˆ˛˙˝“˛öë˙öôö˛ë˘öa˚?∞ˆëööôí˙ö˛ô öëööëôíâíôâ©â˛ëíöôëëôëöôööôëôôL6565J±»¿˛»©âëíô˝öëëöôöëööë˝öëëöôâL665665J»±©ëëí˝öôööôëöôôëkmtõkd$$DDltsõí,Dk˛l    $tllsclsõì˛kltts˛˜˜˛˛ˇ˛ÓÌÔ˝˝˜˚¸இ¿Ë˲»©ëôí>˝?>±©ëë˚öôööôöˆ˛Âƒ´´Ò¨•≈≈Ô¨Ù˝ˆ˜˜˙˝¸™¯öíöö˛ë˛öëôôöôA˚?
  58. ∞ˆëöôëööë˚öô˛öëöëô2?®∞»©âëöôëôôöë˝öëööôök5656LÅ∞»‡‡»®â˛ë öëëööëööôööë˛öëëôâK565665J†∞âëëÛö(ëiltìklõldDElsDkDDtt$lDllkìíLdsìk$DdlsãÉ˝˜˛˛ˇˆÔˇˇ˜˜ˇˇ˝˝Ûò˛Ë˛‡ »»®±ôa*32!ëô˛ëööô˛öë¸öÏ˛Âƒ´´Û¨•˝ÂÔ¨ı˝ˆ˛˜ˆ˙˝Ûööôô˘öôô¸öô˛öë=¸?∏Ë»©ëôëôôëöôöôííöëôööëöô;˛?=˛»©©í˛ôëööôööô¸öôj56565J®–»¿»»©â˙ë˛ö˛ëí˛ë
  59. âK565664J©±˛ëôôíıöëit{sMt{sllcdtskDDll˛DlkDDkDlkdkìíkkCCˆ˜ˇ˜˜˝˝ˇˇ˜˛˛˛˛˜˜˜˛ê¿»¿»¿‡»∞<3ôô±∞ëëÒöβ¨´´Û¨¸Â¨´˛˛˘˝˛˚˜˘˝ ˆöô˜öôA>˝?;∏Ë®ë˛öôöíööë˛ö˛ë˛öô<˝?<∏»»©ëööëıöëöëK5˛64J®∞–˛»†àâ˚ëö˛ë±âBL5˛654J©±˝ëô˛öôô˝ö$íööôöëÄlLllkõlls{tõõklkDss$DlccsttãÇ
  60. ¸<Ä·ÒÒÚ ˜ˇ˜˜˛˛˜ˆDk˜˛˛˜@»»Ë‡¿Ë∏;??;∏»»©íëööô˜öôô˙Â≈¨•¸ÂÒ¨唞˘˝ˆ˚˜ˆ˚˝˛˝¸í˝ö˛ëöë˙öí¸öôÅ<˛?    =∏»»†ëëööô˙öëôëíööôô=¸?
  61. ∞Ë®ëöôööëí˛öí¸öëööëaT5˛64Ja®∞––»®©©®©©ë±±©A+5˛654+A©±ëëööëëôôëıö àjElsllk$lsõ˛lklts{ts˛{îõôÄ–ÿ˝?;»®ààòËÚı˛˜˝˜‰lskd˛˜ˇ˜ˇˇÛòˡË∏:˝?∞»©âëöôô¸öôööôöôôÒ§Ô¨§¸Â¨´Û¨îÙ˛˝˝˛˝˝ˆ˙˜˛¯˝Û˝öô˚öëíöë˛öë˛öëôôÅ*3*ë˛âëööëö˛ë ööôööôëíöëôà>¸?∏˲ë˜öë˝öëëôôjKU˛65TKJa`Ä©±©ÅAIJL5˛6543)®±˝ëÓö)ëicdtsklkkssk#lksslls{t{öâ‡–ˇ∏??;∏ÿË¿¿˝»êh
  62. ÌdDϘ˜˜ÂÑstkÌ˛˜¸˛    ˜Ë»‡‡∏¸?<∏»¿âëëô¸öë˝öôöô„̨¸Â¨´Ú¨˝˛˚˝˘˜˛ˆ˝ ˘öëööôöë˛öôô˛öëô˝ö˛ëí˛öôöëôôöíëë˝öôëôâ˚?    ∏Ë»ëöôëëôöôëjST5˝65U55U55˛65TSJa˚ëööô˛öë˜ö íôëööâìts{ssõ˛{sdDlõslssl{{|zË∏∏∞–∏∏Ë∏:;∏»˝Ë˚»∞    Ï˜lssåÌˇ˛ˇˇ˛
  63. Ìıˇò‡∏>¸?<∏»»âëöô˛öô˝öôöôöôǪ́≈˝Â´´Û¨´¸˝˛ˆ˛˛¸˜ˆ˛ı˝¸í¸öëëöôöôô˛öëë˘öíaâ©©ëë˝öë˙öë¸öb¸?;∏®®ëôôööëööëíööôô˘öôöö˝ôëjJKL˝T4TKJJIâë˛ô˘ö˛ô˛öô˛öôöö˛ë*ööëëíõstls|t{õstDsõõttõìstõí∞–:<=>=:∞®∏∏ˇ»¸Ë©©âëëôô ˛dtmE˛˛˜˜˛
  64. L$˜˜¿∏>˚?:∏»©ë¸öë¸öôööôöÁ≈§Ó¨˝Â´´Û¨´¸˝ˆ˜˜˛˝˛˛˙˝˛˘˝Û˝öôôööëôôë˝öôöô˝ö +=??∞»©ëööí˜öë˝öB˝?<∞)êëjë˛ô¯ö˛íööô˛öë¸öôö˚ô˛ëôëô˜öëëöôëô˛öôô˚öë˝öëìõõtls˛{õõkl|õ{t{{ttîõ∏>˚?    >∏Ë»‡»»®â˛ëöëôööôô˛‰¸˜˜˛˛˝Ò(>˚?
  65. <∏»»ëööëööë˛öô˙ö»ƒ´´¨≈ÂÂÚ¨˝˝ˆ˜˜ˆÏ˝™öíëÙöô˛öí=˝?    ®»†ëÒö+=>>?>2∏®4>)=?=:3Jôô¸öëë˘öôöíë˘öëÔöëôööôÚöëât˛|s{{st|{õ{|{tlt{tîúà8>˙?<8–˝»©ëööëí˝ö íëöâÓ˛˜˛˛˜˛˜ˆ˙9>˝? >;ÿ»Ë»âëôöôë˛öôô˙öΔ˛Âƒ´´¨§ƒÚ¨îÙ˛˝˝ˆ˛˜˛Ì˝¸í˛öôô¸öô˘ö5¸?®Ë®ëëˆöb=>J<<3 )**BâbJ+b=>=:Aôëô‡öôööë˙ö34bôô˘öë˝öâíLtöõ˛sMls|{tsbLMöötîë;˙?:∏8Ëë˙ö˝ëöëô
  66. î˚˜˛˜˜˛˜˛˝∏‡:Ë∏»Ë»â˝öôô˜öô–˝Â¨´fl¨¥˝˛˝˝˝˜ˆÚ˝˛¸˝Ûööô˚öô˘öä¸?>Ë»»©ë¯öä3B4>3!    3=2‡3?>*1!öôööâ+??*∏ò˙öô˛öôô˚öôÏöí434>?!9A˜öëöëõL,,kLlLMlsklöC5LkLö{õ¯∏<¸? >∏ÿ¿Ë»ëööôıöâÓÌk˜ˇ˜˜ˆˆ˜˝˝∏∞¿Ë˛»¿ôöôöôôëô¸öô˛ö·˝Âƒ´´¨≈ÂÛ¨´˝˛˛˝˛˝˜ˆÎ˝™ôôÚöB¸?>®»»©ëöô˙ö??4¿∏öí5˛? ;»∞®©)Bö4?=∏˛ôí3+<3ôëë˙öë˛öëöë˘ö ä?>ö–*c>?4ò∞ô˚öëöël,klsLl-LlíLöK-íjlõõâ∏;˝?=∏˲»®ë˛öë˝öíôööôöëöô„˜ˇ˜˜Ïı˛˛˛ˆ˝??>Ë–»ëööôöë¸öô˛öôöfi˝Âƒ´´Ò¨≈ÂÂ≈¨´ˆ¨”˛˝˝˛˝˜ˆÙ˝˛˛¸˝˛˝Ù˙öë¯öí¸?=∞¿»âë˚ö
  67. j3+4!ôëö=4ä˝?:∏Ë©ëôöí33*;ëôôööä>?B∏êÙöôôÈö+>íëôöí++3>=iòë¸ö°,líírlöltt{,LstLtlkölIË∞˛?<–∏Ë»‡Ë®â¸öë˝öëööô˛öôΘÏ̘dãskÙ˜˜˛˛˜¸?:¸»Ë»àôöôöëôë¯öŸ˝Â§´Ò¨•˝Âô´¯¨¥”˛˝˝ˆ˝˜˛˚˝˛Û˝˛˝”ö4˝?=∞»»©ë˚ö
  68. ??*∏òöö5?3<˝?>∞»»ëë˝ö*?>Aë˛ö++*ëôôÍöôëıö=?íòê˝öí+>3ëòë˛ö%ô s ¢lLLls{õ{Lttsstìc%°∏∞∏:>;∏∞˿˻®âˆöëí¸öôÚ˜ìDmıÓˆ˛ˇ˛˛˚?:ˇËË»»¿»àôööôööë˚öôöö…˛Âƒ´¨≈¸Â´´¯¨˝˝¸˜˛˜˝˛Ù˝™ö4˛?=±»©âô˝ö íb5jôëööB*äB˚?Ë»»âööë˛ö*4*iôë˛ö4?5òô˘öëÁöô4>íòê˙öí>4öêôöôãtlkKLLls˛ösMt{ìsL6??>;9»∞∞»»¿‡»»©ëÛöô˛öôÚdkDÏÏ̈˛˜˛˙?9–Ë»˛¿»‡»»ëÛöô
  69. Δ≈§Ө≈¸Âƒ´´˘¨¥Ù˛˛˝˛˝˜ˆË˝ÙÔöB=><ëââë˝ö ä>>ë∏êööí?4ö=¸?=∞»®â˘ö =>öêôöôö4<öòô¸öô¸öëıöëˆöä+ööë˘ö >?ö¯ëöëãl,L-M˛tkKkttstl>˚? >»»¿¿‡‡¿»»âë¸öëıöô¸˜Ôkk-.Dssd˛˜˙?<∏Ë¿‡»‡‡ËË»»âÙöô١Ψ•˚¨´˘¨´˛˛˛˝˛˝˜˛Á˝ Òöôööíëíëë¸öB?+ôê˛ö4?*2˚?:∏»âë˘ö4?+òà˝ö4=jôë˝öô˛öôˆöëöôô˜ö3?+ô`öô˙ö4böëööôíl5KíMll5.,sõsLE˙? >»Ë‡‡»‡»¿»©âÔöôŞˇÔlkD--ìk˙?∏ˡ»Ë¿Ë»¿Ë»ëıöô“ͨ≈¸Âƒ¨´˚¨˝˝ˆ˛˜˛ˆ˝˛˝˛˛˜˝˛˝˝íˆöô˛ö˛ô˝ë¸ö í3+öëëööí+íí˚?∏©âë˝öô¸öí+íöôööôJ?4ôô˙öôËö3?íòë˘öä>3ôêööô‚„£ìí´ÏÙÎÉõõööõL˙?
  70. ∏‡‡˝»¿‡»»ëë˚öô¸öëíööëx˙ˇ˜˜ÓDlksD˝˘»Ë»»Ë»‡»¿¿»»âë˜öô÷Ȩ§≈˝Â˘¨îÙ˝˛˝˛˛˝˛˛˜˝˛Ù˝˛˝ÛÛöä**°©âëë˝ö>?ä∏ê˛öJ?JB˝>3°πâëôë˜ö J?3ôööôö+*öëÛöôÔöj3bôô¯ö+?4òööô¢√ÀÃÙıÙÏ”´≥≥´Àú,¸?„‚ˇ¿»»¿Ë»‡»»âë¸öôöíí˛öí˛ö.ô˲˜˜ˆcìltl?˝¸Ù˚˚»»Ë»Ë¿»¿‡»¿»©ëôöô˚öô‘¨≈Â≈≈§¨´‚¨˝¸˛˝˛¸˜ˆ˛˝˝˛Ô˝˛˝ ˆö+>˝?<∞»©ë˝ö55öêë˛ö4?+∏∏©©ë"33?>)à)äöô˚öä>5öàô˛öä?4ôê‚öB?>ôë¯ö+Jöë˛öôÍ´ÀÀÏ˛Ù”Àٔϴõ˝?™™C»»‡‡˛»‡‡»âë¸öôë¯öë˝˜˛˜ˆl˛?˚˙˚˜˜ÙÄ¿»¿Ë»»‡¿¿»Ë»âë˘öô†    „¨¨¸Â¨´Î¨≈§˚¨˝˛˝˝˛ˆ˙˜˛˜˝˛˛˝˛¯˝¸í¯ö=˚?1∞»©ë˛öí,Çôë˝ö*>?3±®π3?=    :4+3??2®à˙ö+í˚ö?>öë˝öôÓöë¸öj>äôê¯ö+?Kôà˛ö    ôÍÀ´´≥≥ÀÏÀ˛ÃÌÏÌÓ˛? ™ääb£ÈË¿˛»‡‡»»©ë˙öôëööë˛öëı˜˛˜ˆ˛ˇˆÌ˜¸?˙¯Ú˜˛Ûò‡»Ë‡¿˛»ËË»»ëë˙öôÈ˚
  71. ÈÍ
  72.  
  73. ͨ¨≈˝Â≈´´Ì¨≈ÂÂ≈¨´¨¨”˝˛˝˝ˆ˙˜˛¸˝˛˛¸˝˛¯˝˛˝Û˘ö4˚?;∏Ë©ëë˛ö=?j∏ê˛öä>˛?    –∏=öôôööíí++öë˚ö+?+ôË˝ö+ÇöëÈöë˝öä==ëòë˜ö=>bêë˝ö°ÏÀ´ìõ¨Ã‰˛ÌÀÀÏÓ„≥ä䢴¨√¡ËË»¿»»¿Ë®ëë˚öô¸öôâ˜ˇ˜˜˜˛˜˜˚?Ò˘˛˜    Íò»»‡¿»‡»¿˛»®ëööô¸öô˛‚¨¨≈¸Â¨´Ì¨¸Â¨´¨”˛˘˝˛˙˜˚˝˛¸˝˛˘˝˛˛˝™˙ö>¸?=∏»»âë˝ö3>íôëööJ¸?:∏>+ôà˝öJ>5ôÄô¸öj?4ô†˝ö5>íêôööôëÈö4?+ò®ööë˝öôöö4+öô˚öëδÀ≥õÉ>¸?>˙ÛÀííä#√ì£√¢‡ËË»‡»‡»©ë˛öô˚ö ôëäklƒ˜˜ˇ˜˜˛˛˜˙? ¯ˆ·†Ë¿‡˛»‡»¿‡»©í˘öŸ˛¨¸Âƒ´´Ó¨˚ƒ´¸˜˝˛˚˜˛˜˝˛˘˝˛˛˛˝¸í¸öí˚?∞‡©ëôô˛öí4íöëö3˚?;∏<?*∏à˛ö#>>*êê˙öÇCöë˝ö>?â∞êÔöô˙öb3+*ôô˜ö5?3∏ô¸öô™´Àªc˘?>Ú—™ääbCÉäɉ°®‡˛»…©ëô˚öôôÇ£¨ìϘˇ˜ˇ˜ˆ˜˜Ô˜˜˘?¯˘ÛÌàˇ¿»Ë‡¿Ë¿¿Ë»©í˙ö         ‰˛¨≈˝Â¨´Ì¨≈˚¨˘˝˛˛˝˝˛ˆ˝˜ˆ˝˝˛˛¯˝˛˙˝˛˝Ûô¸ö>˝?:∏»®ëë¸ö4?j∏∞4˙?∞·4Åôë˛ö?=ö∏ë˙öí>=öàôööí,äöëí˘öôö??*∏ê˜ö+43ëôô˙öâ´≥≥˘? 3Ÿ˚¬äíäcäííä˛C#£¢…†‡Ë»»ëëôôë©·ÎÀ§¨¨Ãˇ˛˜˛ÌÌ˛˜˛ˇ˚?
  74. ¯˙¸ÙˆÎp˛»
  75. ‡‡»Ë¿»»‡»©ë˚ö
  76. ôÎ -+‚˛¨§˛ÂƒÍ¨¸Â≈Ø˛ı˝ˆ˛˜ˆ˝˝˛˝˝˛˛ˆ˝˛¸˝ ô˛ëö+˛?=∏®©ë˙öK>+Å=˙?;∏®±=4öàôöä?<ôôöô¸ö í?5öôöö3?íôàËöjB=Bôë˜ö=?ä∏ê¯öë™≥˚?=    π≤ ííä¢ÇííäÇbääbÇä´À™˛ö ôëää™ÛÙıÓÔ˜Ì˛¨ˆ˜ıÓ˜˛˜˛˜˙˙˚˝ıÏ˛˜    Íê¿Ë»¿¿»Ë»˛¿»ë˚ö ô®È¡ $CÈ˝¨ÂÂ≈˨≈˛Â≈ؘ¯˝˛˛˝˝˛˜˜˛˝˝˛ˆ˝˜ˆ˛˝˝˛˙˝ ˛˝¸©ââ©ëö3??â˝ë˘öä*3˚?>∞©ëë>?b∏àöíKıöbj˝öí?>ä»ô˚öôö5?5∏∏ë˛öô¸öí+>=âàô¯öôâ≥¸?Ÿ≤™´öì˝äãäíÇÇäíööí䬢ööõõãÑÑ¥Ãı˛ÓÌÌııÀˆ˜˜˛˜??˙¸ıˆ˚˚˛¸c˛ˆ    †¿‡‡¿¿Ë‡Ë»¿»®ë˚ö Å<Û7°©Ê˝¨≈•¨    •≈§Ù˛˝˝˛ˆ˛˘˝˛˝˛ˆ˝˝˛˘˜ˆ˘˝˛ˆ˛˜ ˆÛ∞»©ëöbböíë¯ö*>2±:<<42;A®ëöí+4Bôëö+>3ôê˚ö í=>äòëöí4CíôÈöjä=4öêô¯öB>4ô∏ıöëâöõ˛?=ȱ ´ãíí˛äíöíäÇäíö˝í ääííöíä#C´≥ı˛Ó ıÓψıı˛˜˜˛ˇ˝? ˚˙Û˜ˆ#b#Ckl˜ˆˇı¿‡‡»»¿¿‡Ëˇ»©ëë˝ö ô>ˇˇ˛È…—›¨¥˝˝˝˜˛Ù˝˛˜˜ˆ¸˝˛˙˜ˆ1∞Ë®ëıö+>??2®®∏ô˛ö4?*òIJö
  77. >?3∏∏ë>?ö∏ô¸ö B?4ôök??ë∏êÍö4?=†∏ô˜öj>?2òò˙öä+332    ∏êõ">#∫π´´íí˛äíöíöõõíää¸íä¸í ¢b$™ÀÀÌ̈ÓÃÏ˛ˆˇ˜˜˚?ÙÚ˜˜Îkl{s$˛˛ˇ˚x‡‡˛»ËË¿¿˛»©˚ö È˛˜ Í„˘¨•≈§Á¨˝˛˝˛˚˜ˆ˛˜˝ˆˆ˜¸˝˘˜ˆ>    –®ë¯öí3>˝? <∞©àôööj3íöô˛öj443:ôa*ä<<íôJ54â2ëöâ+3=*ôëÒöô˝öíjä=<ëêô¯öä>=ë‡ô˛öô˛öí=˚?<¡#,˛É
  78. £ãíkcbÉììö∫¸õíö≤˛íööí˛äCD¬ ÀÀÏÏÃÃÏˇ˜ˆ˛˜˙?˙˝˝ ÙÏ˝˜˜˘à¿»¿˛»¿Ë¿˛»â¸öôÙˆÍ
  79. Î˚¨≈Ê˝Â≈¨´Ì¨唞˛˝˝˘˜ˆ˛˜˝˛˛ˆˆ˚˜˛˛˝˛¯˜˝)±ëë˙öä4˙?;∞    4∞∏ëööj>5ë¿ë˝ö4?>1Ä2=?<ô=>=®Å4??à∏ôõ˛öô˛öôÙöí>?4∞òô¯öíb>?3òò˙öí>˘?<ÿ*˛5 M--5.-M--ML,D˝dkí∫öö˛õí™ääcc¢ À´´ÌÃØˇ˜˜ˆ¯?Ú¯Òˆ˜¸˛ÏÙ˜ˆˆÙ‡˛¿‡Ëˇ¿¿˛»®ë¸öÒ˛˝˛˛˝ÈÈ˙¨≈˚¨´Ó¨˛˝ˆ˜˜˛Ù˝    ˛˛ˆˆ˜˛˝˛˝ˆ¸˜ˆˆ˛˛˝¸™ôë¸öë*=¯?    ®    34iöôöö4?ä∏ò¸ö+3í=>=;34A3>?2:;jôôÙöô˙ö+3*=2ëêô¯ö+?4âööô˙ö4˙?>;»®©,655--MM--M55˛U..NN.-,$É˝õìíöäb¬ä´”ÏÌÃψˇ˜ˆ˜˙?>˘Û ˆ˛ıˆˆ˜„c˜˜˛˛Ûp¿‡¿ËË¿‡»‡‡Ë»©¸öô˚˛˝˛˛˚‰˘¨˚Â≈´´Ô¨¥¸˛˝˝˛˝ˆ˘˜ˆ˝˝ˆ˜ˆ˛Û˝˛˛˝ˆ˜ˆˆ˛˙˝    Ùööôâ!3
  80. π3¯?π©ëë??*∏òöö++3íôô˚ö j43ö4?>A2=3ôôÈö4?>1∏ô˜öB+>>*òò˙öôöí˙?;»±ââôÅ,N˛-M-M-˛5-55˛-.MM.&%.--,lsìíí≥˝´ ìúÀÏÓı¸˛˛ÛÛ ı˛˜ˆıı˛˛Cı˛ˆ˛˙p¿»¿‡‡¿¿Ë‡˛»ë¸ö    ˝˝˛‰˘¨≠˚¨´Ó¨˝˛˝˛˛˝˛ˆ˝˜ˆ˛˛˝˚˜ˆ˛˛˝˝˛Ô˝˛˝Ï<>˛?<∏∏    =¸?=    ±âëëöJ=33!ôôö4?>ôô˜öíÂö5?42:˛ô˝öë˝ö+>?*∞∞˘ö¸ë>˝?<    ∏±ëë˛ö)ôBE-,ıììc.Eå%dådEîõdúõl.--&%%$$DÉããõîú´˛?#˚˝˜ˇ˜ıÏãs#ı˛ˆÌÏıı√Àχ¿Ë»‡»¿‡»Ë˛»©ë˝öô˛
  81. ˝˛„¯¨•¸Â¨´Ô¨´˛˛˝˛¸˝˛˛˚˝ˆ˜˜ˆÒ˝˛˛ˆ˛˜ı¸? ;∏»±ôíb**â∫ôëëööôôöö??3∏òö+4j;*öôÛöõÔöj4+B><*òô¯öí343<3ôê¸öíB*·±±©±<??=)∏±˛ë¸öë°ãd¨åìõÑeı˛˛ıÃ˝åîúõõúõõî¨îúå%c%ÖD>˝?˚˛˛˜kdlÙ˛˜˜ƒ¬Ï√΄§ÀˆÎò˚»‡Ë»»¿»©ë˝öÈ˛˛€˜¨≈˛Â≈Ó¨˛˝˝˛˝˝˛˝˝˛¸˝˛˜˜ˆ˝˝˛¸˜¸ˆ˛˛˝˛¸˜ˆ˝?    ∞»©Òö*=43;íôö+??2∏ê‰ö+jí??=àô˜öjb>?<∏∏˝öëöí4¸?=∏∞    =*ôôëíööô˚öë°ìÑÂEMD˜ÓƒåÑåÑîúõ˛ú îõõîååîú´îD6˚?(˚ˇ$kDı˛‰‰ìöìõõ¢s´Ì¡†¿»‡»»‡Ë‡ËË»»©ë˛öô˘˛€ˆ¨≈ÂĄ̂îÙ˛˛˝˝˛˝˛˝˛˛˝˝˛˛˝˛˘˜ˆ˛˝˛ˆ˜ˆ˝˝˛¸˜ı??∏©âëÓö4??2ôí4C4>=iòëÌö í+Jö=?>11aöô˘ö    íí4>?)1öô¸öôj>˘?;∞®ëôëˆöëíôë#-DllåîÂå¨å§ƒãì˝õîõãååîì5˘?˚˝˛c  §åîìõõ{õìõt{ãÀ®Ë»¿˝»¿Ë¿˛»ëô˛ö똘Âı¨≈Ψ˝˛˛˛˝˛˛˝˝˛˛˛˝˛˝˛˛˝˛ˆ˝˜ˆ˛¸˝ˆ˜˝˝˛ˆ˝˜ı)±˛ëÏö)++ä>>3∞ô"4>*3?>)ê*+öôôííööíjöö+=+ë>?>:2ëô˘ö
  82. íí+=?32<+ôô¯ö>˘?=®©â˛öô˘öí˝öôÅC˛lîåîålDÏÌÓÔÌ Ï¢íìîlîõõ´Ñ¯?˚¸˛ˆ˜ls$ıãìÑcMCkk##lãåì¿»Ëˇ˛»Ë¿˛»®ë˝ö ı ˛ÁÓ¨§˛¨˛´¯¨˝˛˛˝˛˛˝˛˛˝˝˛˛˝˛˚˝˛˛˘˝˛¯˜˛˚˝˛˛ˆ˛˝ÛôíÊö"+>5B><3©â*+=**??<∏;??21??<    >>= 2jöô˝öõöíäBj+>?3:=5âòô˚öëööëöB˙?=∞±âëë¯öí¯öôâäl˝îåã Î"ÎÙ‚lçå$,õõk5¸?)>3—Ú˝ˇ˜˜ˆıellkjCkcLCCcå%+ÿ‡‡¿‡»»‡»¿Ë¿»©˝öô ˛?◊Ú¨•˚ƒ˝´˙¨À˛˝˛˛˝˝˛˛˝˝¸˛˝˝˛˛ˆ˝˛ˆ˝˜ˆ˛ı˝˛˝ ·ö4>=A>>=2++**í+3+BäKBä˝öíööjjKä+5=*<??2<4âôô˘öôöôëâëô*¸?=∞±©ëÍöôôâíìîîå 
  83. *
  84. i‚˛ ÙÍÉ5??4AÈ „C+Dãõöõìıˆ˜ˆ˜˜åìkä˝kjDCk$®‡»¿¿»¿‡¿¿Ë»®ë˝öë5˛ËÚ¨≈˙Â≈˛´˚¨˛˝˛˝˛˛˛˝˛˝˝˛˝˝˛˛˝˛˚˝˛¯˝˛˛˚˝˛¸˝˛˝˝˛˝¸í˝öõÌöô¯ö%K53ô=?>!<?>)2>>3*>>4!>?>    =??    ;>=ih*köôˆö    J4=<    ∏±±˛?<    ±±˛ëˆöíöôÙö ôëâ¢√
  85. Å*"β¸?+˚ÎõõööãìíıˆÙä‚ÇjckcííãíC¿»Ë»¿»Ë‡˝»®ëô˛ö*ϻҨ§˙ƒ˛´¸¨¥Ù˛˝˝˝˛˝˛˛˝˛˝˛˛˝˝˛˛Ù˝˛˛˘˝˛˝˝˛˛˝˚˛˝ÛÎöõöjíöä4+ëi45jâ4=*ô*4*ôëKíöôö*>˚?<»∞∞<<jöô˛ëÍöô˙öôëâÅ·)"#˙?1à‡ dlB˛˝ıÇkKjj kckc,‰ìc/∏¿ËË¿»‡‡¿»»Ë»©ë˛öô  ®Ô¨≈˚²´˚¨˝˛˝˝˛˝˝˛˝˛˝˝˛˛˝˝˛˛˚˝˛˛˝˛˛˝˝˛˛˙˝˛¸˝˘˛˝™¿öõÛö+¯?>»±ôööëÔöíÛöí˝öôëâÅÈ˘?1<¯òò®Ë»íãjkϘˆkKCää#ìÉ7∏¿»»¿»Ë»¿»‡Ë»â˝öâ˝Ù˝ úƒ¨≈¸Â˛´¸¨´˛˛¯˝˝˛˝˛ˆ˝˛˛˝˛˛˝˚˛˝˝˛˝¸”öõ˝öôÁöôí¯?=©âëÙöô¸öíÛöë˜öôôÅ>˘?>0∏»‡¿»»¿‡ÍjckC ,Cã´‚"¬Ì˛˛∞¿»¿‡¸»¿»®ë˛öô˝˛Ùìì˛ˆ¨ÂÂ≈§Ò¨•˛Â≈˛´˝¨˚˝˛˛˝˛˝˛˛˝˝˛˙˝˝˛˙˝˛˙˝˚˛˝˝˛˛˝˝˛˝”∫ö˛ô˛ëô*˚?>;    ±ëâëÙöôÛöíÚöë3<â±=˚?<∞Ë»‡»˛¿Ûckk ̃„Ì# ı˛˛    »¿¿»Ë»»‡Ë¿‡»©ë˛öâ•îî-76ˇ˛≤˝Â≈¨≈¯¨¸˙˝˛˛˝˝˝˛˚˝˛˙˝˛˛˚˝˛˝˝˝˛˝˝˛˛˛˝˛¸˝˛˛˝™–öõöj3˛<»∞®±*˝?=2©π˛ëô·öô˜öä4>??∞®∞*3<<;    ∞®˝»‡Ë»¿ÒÚäɈÌÓıÏı˛˝ Ó    ®‡¿¿»¿¿˛»¿»â˛öô„.ååç¶$-7˛˜¶˚•Ϩƒ≈¨ıˆ˙˝˛˛˝˛˛˝˝˛˛Û˝˛˛˝˛˝˛˛˝˝˛˘˝˛˛˝˝˝˛Ù¿öí5˚?>∏»…>?4B˛ëíí›öíööí˝ö*=¸?<∏ËÄô˚öí¸ë öë¿˙È̉‰Ì˛Ïˆ˜˜˛˛Ñ∞‡¿‡¿»»¿»¿»©ë˛ö $å̉CkãÑ˝ıï˙Â≈Ó¨¸ÂȘ˜¯˝˝˛˝˛ı˝˛˛˝˛˚˝¸˛˛˝˛˝˝˛˛˝˝˛˛˝˛˛˝ ÍöõŸö>¯?;∞±AâööëÎöëÎöí+>˙?;∏ËâÚöÄ·¸˜Ó§å˜˙˛D7?∏¸»‡»¿‡»©ëöö    7 ìD545˜˜˜•≈˝Â≈≈¨¨≈≈Ò¨≈˛Â≈Ã˝˜¸˝˛˛˝˛˛Ú˝˛˛˝˛˛˝˝˛˝˛˛˝˛¯˝˛˛¸˝˛˛¸íÌöõ·ö    ôööôëííöö3¯?=;©ëöôô”ö3˜?    ∞»ëÛöëêöÎÌÏÌÌÌ√´‰?˚!Ì$?
  86. ∏¿»‡»»‡¿»»†ëöA?#-7>?˛ˇ˛˛≤¯¨≈ƒ¨´Û¨≈Â≈Ï˝˜˛˝˝˛Ù˝˛˛˜˝˛ˆ˝˛˛¸˝˛¸˝˛˝˝˛˝Û˘öõˆöõÒöõÛö
  87. b*32¡±©©ëë=˚?=;    ±˛ëí‹öëööô˛öä+jöJ>˘?∏©âëÙöô¿íãä#clϘÌãC¸
  88. Ì»∏˛»¿¿Ë‡®±)6?> 77??˚ˆ©¯¨≈˝Âƒ¨ı˝˜˛˝˛˛ˆ˝˛˝˝˛˛˙˝˝˛˝˝˛˛˛˝˛˝˛˛˝ ‹öõˆö+>¸?<    ∞»±=˛?>;    ±πëô·öíıö
  89. í+=??;ôòQ;>˛?><Jò©ëÚöêilcÎıˆÌkψϣ„˝ˇÌ˛∞∞∏∞∏∞    *45>>Ï˚ˆ∑¯¨≈˚ƒ¨´´ı¨ıˆ˛˜˛˝˝˛ˆ˝˜˛˘˝˛˝˝˛˝¸˛˝˝˛˝˝˝˛˝˝˛˛˝˝˛˛˝˛˛˝˝˛˛˝˝˛¸í⁄öë˙ö5˘? >∞±3>3bôôëë‘öí+=¸?=±®©ôôâaAâôôëëÚöôBKÏ˝ıˆÌ˛Ï£7̈˝˝-+4?ÌÏ„˝ˇ˛߯¨§˘Â≈ı¨´˝˝˛ˆˆ˛˝˛¯˜˛˝˛¸˝˛˛˝˛˙˝˛˛˝˛˝˝˛˛˛˝˛˛ÛÛöõöõÌöëëô¸ëö+˜?=»©ëô—öí+=˘?<π—©íööôôÓöôà+kc˛√Ï√Ñ˛,ÌѸ#,???7Θˇˇ˜ˇˆˇˆˇ˛ıò˜¨≈˙ÂÊ≈ˆ¨”˛˚˝˛ˆ˜Ï˝˛˛˝˛¸˝˛˝˝¸˛˚˝˛˛˝˛˝ ‡öB4˛>=;»±©©ë>˙?><!ëëœö=˜?    —…Ëö&ô¡
  90. Í bc„ãã£cCcÉC ‰§Â?Ï˝?>˛˜˛˛˜˛˛˜˜˝µˆ¨§¸Â≈§˛¨≈≈§˝¨´¨¸˛˚˝˛ˆˆ¯˜˛¸˝˛˝ˆ˛˙˝˛˛˛˝˛˘˝˚˛˝˛˘˝˛¸íÍöëíëí˝ö5˙?>∏»©>˛?>=;    ëôôë”öíB4=3ôJ>˘?Ÿ…íÈöô©òòëãjÎKL++cÉÉcϴ̘ÏÌ˛ ??˛˚7˝˛˛˛ˇ˛ßΨ˝Â≈ƒ¨´´¸¸˝˛˝˝˛˛ˆ˚˜ˆ˝˝ˆ˙˜˛Ï˝˛˛˝˝¸˛˛˝˛˝˛˝ÛÔö ä*++
  91. ©±©©ëôö5˜?∞±<>3Jë˛ôë‘öíb3=>˛?<ôyz3>˛?>4äííÈö íë`¢Åiâíkk‚ÛKLL+Ç£ÌÌÓ˛?˝?Ûˇˇ˛˝˛¸˛©Î¨˙Â≈¨Ú˝˛ˆˆ˜˜ˆ˛˝˜˜˛˙˝˛ˆ˛˛˙˝˛˝˝˛˛˙˝˛˛˝˛˝™˘öí˚öä5¸?>:∏»©ë*˜?>3±ëë–öäb+=˘?ôy˛öäjäÙöôÚöë®ÅcBjâäkííkKLKKkD˛?¸>?˛˛ ˛˝˜˜´Î¨≈˚Â≈ؘ˛Ò˝˛˛˝˝ˆˆ˜¸˝˛˙˜˛˜˝˛˛ˆˆ˛˛˝˛˝˝˛˝Ùí+=>>=;±©âëööB¯?<∞»π;¸?>=<)âëíí‘öäB+rö3ˆ?Èôô˜öô˚öôôÚöëêëä$CBjjäíäCKjCkã,˛˛¸ˆ?˙˝˛Ì˛ ¸˜˜µÍ¨≈¸Â
  92. ≈Ϙˆ˝˝˛˜ˆˆ˛Û˝˛˛ˆ˘˜˛˛˝ˆ¯˜ˆ¸˝˛˝˛ˆ˚˜ˆ˛˝˛˝˝ˆ˙?;∞»©ëë>˜?
  93. ;∏π?>4+"âô“öíb34=˛?3öô<¯?≤˚öííööôÛöô˛öô˝öëëê    äBjäÛÛb…¢Ç##ã,˝ˇÌ˛77˙˜˘˝˛˛˛§È¨•˛Âʧı˛˛˝˛˚˜ˆ˛Ú˝˛˛ˆˆ˛˜˛˝˝˛ˆ˜˛¸˝˛˜˜˝˝ˆ˜ˆ˙?;∏»ô3¯?>><±ëëí–öB+4>˘?
  94. ˛ö4>¸?4íıöôÍözzy ä¬JB  +˛ ˛˜ „?˛7˚˘˜˜°„¨¸˝˛˜˜ˆ˛Ò˝˛˛˝˝ˆˆ˜ˆ¸˝ˆ˜ˆ˛˝ˆ˜˜ˆ˘?∞π4??>=<4*Åâ“öäb*354öö=˜?>©˝öí*++bíÛöôÚöëëôööz˝{ qÎÙ Å"  ˝ ˆ˜˜˜Ê‰‰¸77?˛˚˜˛˜˝˛˜ú‰¨´˚˝ˆ˜˜˛˝˝˜˜ˆ˛˛˝˝˛˛ˆ˜˜ˆ˝˝˛ı˜˛˝ˆ˜˜ˆ˛?    >>==3±ëâjíÓöõÂöíj*34=>¸?>ööq>¯?Ÿöëqz˙{ zÈÛÛ…¡©" ,++¸ ˆÔ˜˜˜˛Ì˛˛˝??>˜˜˜ˇ¯˛˛û¨唞¸˝˛¯˜˛˛˝˘˜ˆˆ˛˛È˝˜˛ˆ˛˛˛˝˛˛˝Ù‚íâëëÿöë¸ö    íjj*+44ry2ˆ?˛ör5˚?=ä˛öëflöëëöz˝{sk˛{zÚÛÚÈÛÍ +J" ˛ ıˆ˛˜˝    ˛˙ ˛ˇ˜˜˚ò¨¥Ù˛˙˝ˆ¸˜ˆ˛˝˝ı˜˝˝˛˜ˆˆ˛˛›˝ÛÁöëıö ôyíäqya34=>>˙?1yy=˜?͸öí*33*ä⁄öëëz˚{Ébz{zz¸¸ÛÍÛÛ +Ç Ï˘    ˇ¸˝˜˜˜˛ˆ¶‰¨˝˛˙˝¸˛˙˝˛˜˜˛˝˝˛¯˜ˆˆ˛˝˝¸˛Î˝˛˝ÚÙöë˚ö˛ôëëâiiëöJK34<<==>>??3òq>˜?>Iqyz4˙?> í˛öíööôôÿöëq˜{zrää˚¸Û‚¡Å‚ bä"˚  ˙‰ı˚˛
  95. ı˛˛    ˛ˆ-+˛˛¬‰¨˝˛˛˝˛˛˝˛˛˝˝˝˛˛˝˛˘˜˛˛˝˛ˆ˜ˆ˝˝ˆ¯˜ˆˆ˛˝˝˛ˆˆ˜˛˝˝ä¸ö ëëâ*231ô*44<˝=˛>?<êë>ˆ?2ëy3˜?2yyôööj4˛>=+í⁄ö™ Û ™ë˝öëëö˛{tÖs˝{ÇÎÎÀ ÚÙ¢ÚÚ……*¢ä"
  96.  
  97. +
  98.  
  99. ‚„ˆ˛˚¯?67˝     ˝˛˛ˆ∏¨À¸˛˝˝˛˝˛˚˝˛˛
  100. ˝˝˛˝˛ˆˆ˜˜ˆ˛˚˝ˆ˜˜˛˝˛ˆ˜ˆ˝˝ˆˆ˜ˆ˝˝Ù44<˛>¸?2ò3ˆ?;∞ô3˜?>iqyö+>˙?3˘öô‡ö˛z˙öÛ˝˛˝Ù©˝ëz˝{ÖÖ˛{¢ÎÛ˛ÎÀ·ÙÎÚÚ˚Û"°ää
  101. ""
  102. ˛˜˜Ï ˚¯5˝ˆ˝
  103. = ν˛ı ∞ʨ ¥”˛˝˝˛˛˝˝˛˛˝˝˛˝˝˛˝˝¸˛˝˝˛˘˝˛˝ˆ˙˜ˆ¸˝ˆ˜˛˝˛ˆ˜˛˛˝˜?>†àâ>¯?>hqö+˘?>1y¸ö+=>>=3í⁄ö˛{˝|˝{˛öí™”˝˛Ùëëíö¯{‚Ù¸ÎÀ°‚ÙÛÚ˚Û""Ç
  104. * "+BÇ ,CÏ˙˘>˚˝˝ ?65Γ¡Ê¨¥Ù˝˛
  105. ˝˛˝˝˛˝˝˛˛˝˝˝˛˝˝˛˝˝˛˛˝˝˙˛˝˛¸ˆ˛˚˝˛ˆ˘˜¸˝ˆ¯˜˛˝˝¸¯?:àqöí>˙?>1qqzööj5¸?4rô—öz{{˙|FFu˛|{˝öÀ˛˛Ùâ©ë¯{b˝Ù˝Ï  âÛÚ˚ÛÍbBä
  106. ˝"BaÇÏÌ¢Ï "+C ˛¸˝˛˝?‚™¬Î‚≈¨˝˚˛˝˝˛˛˝Ù˛˝˛˛˝˝˚˛˜˝˝˛˛˝ˆˆ˛˜ˆ˛˙˝ˆ˙˜˛˝˝˛˝˘?3ôy˛öí4>˛?>4í˘öíäjäíÍöôöëÍöz{||tNN¸|F'm¸|zëíö ÙÙ…®â{|{{tet˛{ÛÎDzã√ÏÙÎÈÒ˚˚#Ç‚"B
  107. !a˝BâëÇÇ™¬*Kˆ˝˛˜˝˘5+ Í™≤™ÆÂ¨˚˛˝˝˘˛˝˝˛˛˝˝˚˛˝¸˛˝Ú˛˝˛˝˝˛˛˚˝˝˛˝˛˛˝ˆ˛˛˝˝˛˝4˛>=4j¯ö˛í˘öí‚öíÎö{¸|F'Nˆ|tt|z©ëôööë©z|{{|ܶt˛{s˚{s£ÀÎÈ˝˚ä+*B""bBBjjâbB
  108. "bϸ˝˛˛¸˝¸=™À‰‰Î§Á¨˝˝˛˛˛˝˙˛˝˛˛˛˝Û˛˛˝˛˛˝˝˛˝˝˛˝˚˛˝˝˝˛˝˙˛˝˝¯˛ÛÌöíŒöí˙özÙ|tt˚|M'm|z±â˝ö    ||{{|mt{||ˆ{ sq…™äb
  109. "a"B˚j    äja+ +ÅâäÙ˛˜˜˜˝˝55ƒÂ£‚∞Á¨îÙ˛˚˝˝˛˝˛˛˝˛˛˝˝˛˛˝˚˛˝˝ı˛˝˝˛˛˝˝˝˛˝¸˛˝˝¯˛˝¯˛˝Û≥ö{||tFF˝|    t#̈ˆ˜˜ˆÌL˝|    FF|{©©ëëö{˛|˝{|{|{tl¸{s{{yi˛™ 
  110. "ÅJjjâ˛j
  111. âëëa*
  112. ‚¬„Ï˝˝˝˛˝     ˛¬™êƒÊ¨ı˛˛˝˚˛˝˝˛˛˝˛˝˛˛˛˝˙˛˛˝˛˛˛˝˛˝˝˛˝˝˛˝˜˛˝˝˛˝˛˛˝˛˛˝˝˙˛˝˝˛˝™ƒöí™À˛Ù â˙ö{˛|N'u˛| ˜˜ ˙|
  113. y–©ëz||{{|{˛|{{t¶¶t˛{l•Ñq©ääëaÅäëa*Kjâ˛jââëëA*¡ı˝˛7˜˝˛ ∞ Ê¨˝˝˛˝˝˛˛˝˛˝˝˛˛˝˝˛˛˝˝˛˝˝˛˝˛˝˛˝˝˛˛˝˝˛˝˝˛˛˝˝˛˝˝˛˝˛˛˝¸˛˝˝˛˝˝˘˛˝˛˝˛˛˝˛˛˝˝˛˛Ù—öz˙{z˝öíÛı˝˛˝ ëë˛ö{˘|tı˜L˚|z–©©{˛|ff|{˛|¯{r¡°ääkÇ¡©Å
  114. *ba+ *aëëâëââ…˛¸    ˝ˇ˜˜?˛˛ˇ˚˝˝ P‡¥Ë¨åÀ˝˛˛˝˝˛˝˝˛˛˝˛˝˛˛˝Ù˛˛˝ˆ˛˝˝˛˛˝˛˛˝˛˝˝˙˛˝˘˛˝¯˛À’ö{{˚|t˛|{{¸ö™˝˛˝˛Ù˛ëí{˘|tˆÙ˜ ˚|
  115. z–…©{|{F«f|˛{zqi˝ëzzyêíãääÇÇ·ââa*aâÇ""°âëôôëj ˜ˇ˛7˚ˇ¸ˇ6®¿»ƒË¨˛¸˝¸˛˝˝˛˝Ï˛˝˝˛˝˝˛˝ˆ˛˝˝˘˛˝˝˛˝˛˛˛˝    ˛˛˝˛˛˝˛˛˝™Ÿöz{˘|m''u˝|zíöíö™˝˛˛Ûâ©©z˝|NM˛|    ˜˜˜˜¸˜L˛|.N|z–—ë˛|mn|{zp»––¸©±ËAí˛äííäâëëB
  116. °â
  117. B °íÇ äˆ˝˛˛˛˝;0¿»¿»‡È¨≠¥Ù˛˛˝˛˛˝˝˛˛˝˝˛˛˝˝˜˛˝˝˛˝ˆ˛˝˝˛˝˛˝˛˛˝˛˝˛˛˝˛˛˝˝˛˛˝˝˛˛˝¸˛¸ööëflöz{˝|F'F¸|tu˚| {ëííë™ “©©–q˝|./M||t+t||tL˛˜˛|u/M|q——â˝|{yp¯»»˛©    ëëíôÈ Í˝Û˛íäíí© "Çä¢*"
  118. ©Çˇ˜˜˚˜˝˜˝∏®¿»˛‡√úîȨ˝˙˛˝˛˝˝˛˝˝Û˛˝˛˛˛˝Ï˛˝˙˛˝˛˛˝˝˛˝˛˛˝˛˝˝¯˛˝Ûôë‡ö{˚|MMı|NM|{©ëë˛öë©â{˝|MMı|t +¸|t|{»…–â˛|3zp»»©©ëíööôÚ˜ˆˇˇ˛ÎííäÇäö¢*äíöí"Aâöäıˆ˜˜˜˝˛˛˛˝˜¸˛Ë¿»¿˛»‡œû˛ùúį̂¸˛˝˛˝˙˛˝¸˛˝˛˛˝˛˝˙˛˝˜˛˝˘˛˝˛˛˝¯˛˝˝˛˝˝¸˛˝˛˛˝˙˛˝ ô‚öz˛|mu¸|tC ˛ Ct˝|N'm|z—ëë˛öëzˆ|TMt˝|tÙ|q–»»®{|y–¯Ë»»âëíööô†˛˜˝˛ÍíëäÇäöí˛äíöíëöö˚˜˛ˇ˛˜˝˚˛òò¿»»‡‡»»‡Ë¸û˛ùúîÚ¨”˙˛˛˝˛˛˛˝˝˛˝˝˛˝˛˛˝˝˛˝˝˝˛˝˝˛˛˝˝ˆ˛˝˝˝˛˝˝˛˝˚˛˝˝˛˛˝˝˛˛˝˛˛˝˚˛˝¸íö˛õÁöz˛|N'm˛|lˆ˙˜ ˝|mt|{©…©í˛öˆ|t/7M˛|M77M˛|M7/˝|    q–®®à©zy®†˛»âë˛öôˆ˛˜˛˝˝˛ ˛ö˛íääãäíöö˛íä¸Û˚˛    ˜˛˛˛»‡˝»˛‡¿‚¯ûùùúú¨îÙ˘˛ ˝˝˛˛˝˛˝˝˛˝˛˛˝˝˛˛˝˛˝˝˝˛˝˛˛˝¯˛˛˝˙˛˝˛˛˝˛˛˝Û˛˝˛˝˝˛˛˝˙˛˝“‰ö{˝|Mm˛| ˆ˜˙|q–©©ëö{˛|..t˙|t¸|TU˝|UMU||{q–ÈÙ˝Ûâ©®àà©©ëëö{zêÚˆ˛    ˛˛ˇ˝Ú˚¸˚Ù˝äííööôí˛ö jÇ¢ÍÙÍ‚íıˆ˝ˇ˜˜˛ˇ˜?4ò¿»‡»‡»Ë»»‡¿‹ûù˛ûù˙û˛ùú¨¥ı˛˛˝˚˛˛˝¯˛˝Ù˛˝˛˛˝˝¸˛˝¸˛˝˝˛˝˝˚˛˝˝˛˛˝˛˛˝˚˛˝˛˛˝˝˛˛˝˛˝˛˛˝˝äÊö{¯|Ù˜t˚| q–…©ëö{||M//¸|{˛z˛{ˆ|{z†–®ıˇ˛˛Úòààâëëz{|zQ˝ ¸˝˛˛˝˛˛¸™íä˛íö¸í    äÙ$Cäjj ˜˛˛˝˜ˇˇ˜˜˝˛®¿¿‡»‡¿‡‡»»Ëûùùûûùˆûùùúî¥˛¨˝˛˝˝˚˛˝˝˛˛˝˙˛˝˘˛˝˝˛˛˝˛˛˝¸˛˝ı˛˝ˆ˛˝˚˛˝˝˚˛˝˛˛˝˛˛˝Ùö˜{zıöíëz˝|t˝|˙˜˚˜l˛|Mt|q–…©ëö˛|M.u||zqh»––—»àqq˛z˛{zzq¿®®Û˛˛ ˇÚò¿®ëz{||y˘ˆÙ Û˚˝˛˝˛˛˝˝#CC˛L4˛T
  119. U55˜44˚˝˜˛˛˜˙?¸¿˛»‡Ë˛‡¿‡‡ˆûùûûùùÛû˛ùú˛˛˝˝˛˛˛˝˛˛˝˛˛˝˝˘˛˝˝˚˛˝˛˛˝˛˛˝˝˜˛˝˙˛˝¸˛˝˝˛˛˝˝˛˝˚˛˝˛˛˝˝ˆˆ˝Ç¸{tÜÖt˝{¯öë©ë˝|N/u||L++ ˛˜˜˛|    M/M|i–»©ëö¸|{zà––»»…˚©±—˚–—±…Û˝˝˛ÛËë{||{HÙˆıÙ„„Û ,˛Ù˝˛˛˛545˝4˜¯˛ˇ˚ˇ˘3=6˛
  120. ê»»‡»»¿»»¿»˜ûùù˛ûùûÌÓ˜ˆ˛˛˚˝¯˛˝˝˛˛˝˛˛˝˛˝˝˚˛˝˝˛˝˝¸˛˝˝˘˛˝˝˙˛˝˛˛˝˙˛˛˝¸ˆık¸{let¸{z˙öë±{˛|t/.˛|tL˚|,˝t˛|    M.|{»»…©ëz˝|zà–»»……©©âëëíöëö˛ë˚© ±©ÚÙııÛÒx¯Ëz˛|    z ,˛Î,˛ı˝˛-˝4˛5˛˛ˇˇ˜˛
  121. ˜˜˛ˇ˝˛˝ ˛»‡¿‡˝»‡»‡˚ûùÒû ùúööõìåƒÌÓ˜ˆ˛˝˝˘˛˝˝˛˝˝˛˝˝˙˛˝˝˚˛˛˝˙˛˝˝¸˛˝˝ı˛˝˝˛˛˝˚ˆ˜ˆÙˆ{tt{z˚öëz¸|tÛ|tLKt˘|q–»…©ëö||{ö—»»©©±©ëˆöí¸ö&íôöôëëò–q{||{y,ˆ%d$5,,Ó˛-,˝-ˆ˛˛˜˜˝˜˛˛>6ò¿»˛¿»¿»¿‡Ìûùùûùõ˙öìåƒÓÓˆˆ˛˝˝˛˛˝˛˛˝¯˛˝˛˛˝˛˛˝˝˛˝˝˛˝˛˝˝˘˛˝˝˛˛˝˝˛˛˝˜ˆıc{{s˙{e«t{˙öˆ|u..U˛|M.M˝|tMM˝|z–®»»©ëö|{öí©»…©©ëıö{{˘öôëêpy{˛|z(
  122. ˆˆ §,4,˚,    ˜ˇ˚˛˜ˇ ˛†‡»‡Ë»¿»»ÏùÎûùõõööõõ˚öìÉ‰Ì˛ˆ˛˛˝˝˛˝Ù˛˝˝˛˛˝˝˛˛˝˝˛˛˝˝Ú˛˝˛˛˝˝¸˛˝˝˝ˆ˜˚ˆ˛ıÌ˛ı Ì√s||{|fm|{ë˝ö{˛|MM˚|u.M˝|M66t˛|.7.˛| z»»…®©ôööõöö뽩¯öõ˝ö{˝|˘{˛|uMy  ˜˛ˆˆÌ +-ıˆ˝˛$,¸˜˜ˇ˝ˆ˜˜¸3A    ı˛˜˛ˆò»»‡¿Ë¿»»Ê˛ûùÓûùõ˛öõ˛öõööõ˝öìã‰Óˆˆ˛˛˝˝¸˛˝˙˛˝˛˝˛˛˝˝˛˛˝Ô˛˝˜˛˝˛˝˛˛¸ˆ˜¸ˆ˛˛ˇ˛ıˆı˝ˆs||{{˛|âë˛ö{||M//˙|{Ò|{q–»—ÒÙ˝Û˚öëëíö˝{||{{z˚ö˚|t˘| ,* Ï˛˛˛ˆˆ,ˆ˝ Ìııˆ$¸ˇ˚˛*23*¸˝ı
  123.  
  124. ˛˛    ®¿‡‡¿‡»»˙ûùù˝ûù¯ûú˝öõöõ˘öõ˝ö죃̈ˆ˛˛˛˝˛˛˝˝˛˛˝¸˛˝˛˛˝˝˛˛˝˝˛˝˝˚˛˝˛˛˝ˆ˛˝ˆˆ¸˛˝ı¸ˆÌ˝|{||q—ëöö˛|.7M˛|{zqqiâqzz˛{¸|{{zq»–©»…˝ˇ˛ˇ”öô˝öz{˝|UU˝|{zëëöö{˝|6?6t¸|z )*  ˆˇÓƒÏı˛¸ÙÛÎÏ,D˛˝˛¸
  125. )IIJÚA˝    ò¿»‡‡Ë¿¿Òûùù˝ûùúööõõ˛öõööõ˝öõõ˙ö죉ӈˆ˛˛˛˝¸˛˝˘˛˝˛˛˛˝˛ıˆ˝˝˛˝˝˙˛˝˛˛˜ˆˇ˝˛ˇ˛˝˚ˆt˚|q–©ëz˛|tu|{zà»˝–…©—±©â˛ëqq˛ë©±…»©…Û˛˛ˇ”ô©ëöö{¸|U??t¸|{ëëöö{˛|U6?6˛|{x!! ÍÎÍ Ùˆ˛˛ÙÛÙÏÛ˝ ˛,,-˛˛ˇ˛˝IIÅ)†à2+°
  126. 4˚ ˛»¿ËË»ËÎûùúö˛õöõÎöì£ÌÓ˛ˆ˛˛˝˚˛˝˝˛˛˝˝˛ÒˆÙ˛¸ˆ˜˝ˆˇˇ¸˛ˇ˝ı¸ˆ ||{m'u|i–©±{˝|{y®–»»©â©©ëíëâíö˛íë˛öíë©©…Ù˝ˇ˛˛Û±©–ë{˘|Ut˝|6?U{ë±öö{˝|t˛|z02
  127.  
  128.  
  129. ÅıÚÍÍÙ ‰ Ͳ˝ÙÛÙ¸Ù,,˜,DÌ,ˇ˛˛˜˛a 22457 ˙∏¿»˝¿˜˙ûùÛûùõööõöõ˝öõ˛öõ˛öõõÙöã£ÌÓ˜ˆˆ˛˛˝˛˙˝Ùˆ˜˚ˆ˛˝˛˝¸˛˝¸ˆ˜˛ˆ˛˛¸ˆ˛˛˝ˆˆ˜ˆl˛|F'|{©……±{˛|    z©–»©©íöäí˛öõöõöõ˚öëííëë ˛ÙÛ™ô——z˝|5?T¯|    U>5|{…©ëëz˚|
  130. y+ a3!·˛˝¸‚ 6˛Ù 
  131. ııÙÙ˚ÚÛÙÎ ıÙ##$‰˝3J˛ *I*6?67?˚˙®˛¿»»ŒÎûúõõöõ¸öõõ˘öõÒöíã„ÌÓ˜ˆ˛˛˝˝˛˚ˆ˜˜Úˆ¯˝Ïˆ˛˝ˆÏs˝|t||z—»©ë{|{ö±…©ëëâí˝öõí¸ö˛õÙöë±q{˝|
  132. U?>||3t˙|q–©ëëq{||{x*!"Ù˝Ú ¸
  133. Ú‚‚ÛÙˆÙ˝ÍÛÛ˛ # Éd-,6JA
  134. ˝3*2**2
  135. 4˛?ˆ∏‡»¿¿‡Ê˛ûùù˝ûùù˙ûù˛ûú¯öõööõöõ¸öõÓöíɃÌÓˆˆ˛Îˆ˜˜ˆˆ˙˝˛ÌˆÓˆı΢|{»…®©ëz{öíë©©âí˛ö˝õöõ˚ö{|{{zööõ˛öõözz{˙|t|T¸T˚|{–»®à®àzz(    "*$Jb  ı
  136. ëÇ„˛&ˆıÙ ‚¬¬‚£‚ÍÛÍÎÎ ÙÏÎÙÛÙ˝˝ÙÓˆ˛˛ıÏÎ#C3˛-- ==3*3??>?¸¿¿»‡Ë¿Î¯ûùûûùù˛ûùùûûùõööõ¸öõ˛öõõ˙öõÎöí㉘ˆ˜˚ˆ˙˛˚ˆ˜ˆˆ˛˝˝˛˝ıˆ˛˝ˆ    ˆˆÙlG'M˛|{©»®Ò—ëöõööí©©ëöˆõ¸ö˚|˛{˚|T>?U¸|˙˝|7T|{†ËË¿ààÿË ÍÚ˚¸˝ ÅÇ ı…Íji ı Cd£¢ÉÉd#΂‚‚ÍÎÚÙ˛˛˝ˆ˛ˇ˝¸˝˛ ÙÙÏj*˝    >7??=>7?˛ ∏»˛‡Ô˛ûù˛ûùùıûùõöõööõööõööõöõõööõÚö´ÀÀ”À ˘ö    {{sd˜ˆˆˆ˛˘ˆ˝˝˛¸ˆÔˆÓˆıNM˛|{©–®Ù˛˛Ù¸öí˛ö{{˝|{{zö˚õ{˝|U6U˙|T>U¸|˘˛|$t?5{hË»®@jÏ˛˝¸˝Û˚¸˝ÏÉCBä
  137. ë∠˛ Ì„DÏ ÎÙÎ "ÅÍ˝˝˛Ù˝˛˛¸˝
  138. ˛Ùıı„kK"#,˛˛-77??»¿‡»¿ÎÏûùõ˝öõööõ˝öõöõ˚öz˛öõõ˛öõõÀÀ‘‘ÙÙ”¸öz˙{sl˜ˇˇ˚˛ˇ˘ˆ˝˝˛˝ˆıˆ˘Ó    ıb||{q—®òÛ˛˛ˆ™˝öõ{¸|t¸|{zööõõöö{˛|U˛?ı|T¯˛|U?U{Ë@b‰˛˛˝˝ÚÛ˛˝
  139. „ÉDdD$ ·˛ı¸ÍÙˆıÏ˚Û„ÎÍ„‚Îı¸˛¯˝ ¸ı˛˛˝ˆ$lD˛.67/7˛?˛ ?    àË¿¿ÈûûùÔûúÛö˛õ˙özõõ˝ö˝õ´Ù‘ÙÙ´˝ö¯{
  140. ´ÃÃÌ̘ˇˇ˝˛˙ˆ˝˝˛˝ˆ¸ˆ¯˝˘ˆÙry»–»ÈÛ˛˛ıÛ©©ööz˚|>?>˚|{í¸ö{˛|tU5˘|4˜t˝|7U|z¯Äcdı˛¸Û˚J¢ÙÙÎäCCbCc°°È
  141.  
  142. Î ııÛ ÍÏccÑdCÛÛ˝˛˝˝˛˛˝˝˛˛˝˝˛˝˛¸¸˝˛ˇ˛ı˜ˇ ˜ˆ˛5,˛
  143. ?>>ò‡»»˘ûùùÔûú¸öõ˚öõõööõ˝özääìzzö{˝õ˛öÀÙÙ‘íôöö˝{ìs˛{£ı¸ÙÌÌÓ˜ˇˇ˝ˆ˜ˆˆ˝˝˛˝ˆÓˆˆÏ˝Û–±®Ú˛ˇ˛˛ÙÚ©–±ö{˙|55T˛| U?5|{±íööõö{˘|UU˛|,ıt˙|8xP‚cdÙÙ‚Û¸dcdd¢âÅÅ¢©êêòëä È ıÎ Ï#L,$$ÏÛ¸˝¸˝˛˛˝˛˛˝¸˝˝˛˛˝¸˚Ù˛˝˝˝ˆ˝˛˛ =>˛∞»»ûùùıûù˝ûùõöõööõöõ˛öõõööõììõ˛özíäì˝z{{¸öõì´íöíö˝{å¶l˛{Ã√ãssì√Ï˝ı
  144. ÌÓÔˆ˜˜ˆˆ˝˝˚ˆÈ˝ Úë±ë™  ™©©—±z˝|UT˜| >?U|z±ëööõö{˚|t??>˛|t4˚T˘|+z¸D‰Ù˝Î‚Í‚ÛÙ„cÉc™©AcÇâëaÇää¢  ÛÎ $ÇC˛,Ï˚ÍÛ¸Û˝˛˛˝˛˛˝˝ı˛¸˛˛¸Ù$¸ı˛˜˛ˇ˛˛ˇ˛¸>˛
  145. ∏¿¿ù˝û˛ùıûùõöõööõö¸õ˛öìåì˛zöö˝zöz˝{˝ö˛õ˛ö¸{çåı{ÉÏ˛ı    Ãs|tL-Ôˆ˝˝ˆÓˆˆ˛˜˝˛Û˝Ùíöë˛ô뱩z{˛|
  146. t??U||33t˝|T˛|â—ëöõ˛ö{¸|t5U˚|tL˛3K¸|T>6||zx˙˛˛%ıÏıΠΠ˚ÎÎdcÇ®bdc¢©©B#©ÍÍ˚‰„ ÙÍÙı$˛,D¸Û¸Ù„˝˛˛˝˝˛˛˝˝1˛˝˝˚ Û¸ˆˆ˛˛ˇ˛ˇ˝‚ <341∞¿Ìûûùûù˝ûù˙ûùûûùõ˙ö˝õ˚öìã¸äz˛{ì§ì{{˙öõzÏ{ss˙{
  147. |T+ÌÓˆˆ˛˛ˆˆ˜˝˛˝˝˛˝˛˛˝ˆ˛˚˝Ûö˝ëöz{˚|5U|T¸T˙|    z–©íöõõööz¯|tUUı|6?U|y¯˙˝˛"ˇÎ Í˚ ıÛ˚ÙdcäÇdÉÛÛâÍÈ·ÒÎ4 ¸ˆ˛˝ ωÎÙıDÎ˚˚˝¸¸˝˝¸˚Û˛˚˛˛˜˛ˇ˛ˇ 5˝
  148. ∏Ëûùˆû¸ùûûú¸öõõöõìåõõ˛öã˘À í˛{åå{{öë˛öõõöˆ{tܶl˛{tÜÖt˛{teft{||{±±©¬„ÌÓÓˆ˛¯˝˙˛˝˛˝ˆÓ˚ˆı¢zz{{˛|U5T¸|T˘t˚|{–»ö˝õ˛öz˙|U??T˛|U??U˚|{x¯¸˝˛˛$˝˛Ì¢ÎÍÚ˚¬˝ı˝ÙDdã™íäÎÛÈÒ¡!
  149. Í·‚Ω5 ˝˝ı¸˝˛¸C ÙÎC¢ÚÒ˙¸Ù˝¸˚˝˛¸˚Û¸¸˙Ú˛˛ˇˇ˛˝ı????4˝1®¸ûù˚ûùù¸ïùõöõõöõõ{zõåãzö{ìıÀ˙{zëíööõõ˝{ll˙{lt˝{|met˛{mfm˛|z©…©ÚÙÛíõãƒÌÓˆ˛˛˙ˆ˝˛˝˝˘ˆÙs¸|5??T˝|T¯T˛|U5|{–»í¸õ˝öz{¸|TU˝|t5U¸|{zx˙˝˝˛˛'˝˝˛ˆ¬¬°ÚÚÎÛÍ lÇÛ ™¬ÛÚÍÍ!i    ®È‚* ˆ˛˝˝˛˛¸(˝˛#Í˚˚Îc¬ÈÈÒÛı˚Ù¸ÛÚ˙ÚÚÛÛÚÒ ˜˛ˇ˛¸>??=˝?∏˚¯ûù˝ûù¸ïõ˝ö{õzõöö˛õãÙÀã˚{z˛í˛ö˛{å¶Ö˜{˛|˚{¸|{q——ëÚ˛˛Ù˝öíãD˙Óˆ˛˛˝˛˝ı˘ˆÎ¸|tT¸|T¯T˛|>?|z–»í˛õ öõöõõööíöz{{ˆ|:{{zqp˙˝˛˛˝˛˛ÙνÙ…Û¸Î#
  150. Îν˝ÛÛ¸˝ÙÍa·ÚÍÈ…·    *Ûˇˇ˛˝ Û˛˝¸˚¸˝Û˝Î#k ÚÒÚı¸Û˚ÒÍÒ˚ÍÈÍÎ ˜ˇ˛˛7>5˛Úûùïïçùõ˛ö    õõìõ{{õzz´ÙÀÎä˚{z˛ëöö˝{ÜÖ˝{    zöëëâëëqzz˛{˛|˛{zq©—®ê—˝˛Ùöëëöz˝|.¸Óˆ¸˝¸ˆˆˆıB¯|T˜˝|66|z–»í˛õö˛õ˛öõöë±ëëq˙zqi†–®Ë¸˝˝˛˝˝ˆ˝˝    ¸ıÙˇ˛¸
  151. È    Û˛˚ÚÛÚ¸˝ÛÍ
  152. ÈÚÈÈ¡ÚÙı˝ÚÈÏı¸˛˛˝! ÍÍÚÇk¢˚˚ÈÍÛÈx    ÏÚ¸ÚÚ ˜ˇ˛˛77>4>
  153. 
  154. ûùÛû ùïïùõöö{õååõõ˛{ìÀ´˛ã£ÀÃÀβÀÃν{çs{zâëëöö˘{ëë±±˚©¯ëâ©—–©©ÚÙ˝˛ı™ë±z{¸| uMuTT4ÓÓˆ¸˝˝ˆ˜˜ˆˆık¸|Ùt˙|â–Ëö¸õööõööõõ˛öí±©±ëôë±˝ëôô·˝˛¸˝˝ˆ˛˛˝˝˛˛(˝Í
  155. )͸˚¸˝¸ÛÚÛ¸ÍÍÛBJ
  156. ÚÈÈÍÈ
  157. ÈÛÚ
  158. DÎθ˝˛¸ÎDzÍjÉÛÚÈÈxpqhıÙ˛˛ˇ˜˜˛˛7˛76=>335˙ûù˚ûùù˛ûúöö{{õìõz˝{ìì˚{ãÃÏÏÀÎÀr˛{    å¶{{ëâëëöö¸{zë±˝©ëíëë˝ö˛ëíí±©±©˛âë ˝ıÀí±q{||MM˜|676˛˝˝˘ˆı-U˛|Tˆt˙|z–…È˝öõõ˛ö˛õ˙öõäÀÀÎÛÀìõôÚ¸¸˝˝˝˛˝˛˘˝<ÛÙ˚˝˝˛˛˝ÙÛÛÙÍ¡·aâÈÛÈ…ÈÍÈ    ¡ ÍcD,Û¸ÛÙÏÉ㢂Ç$ÚÈËxqyhòÚˇˇ˛ˇˇ˜˛˛777??3*!*3Ûû˛ùûùúö˝{zzÚ{sãÉj¸{    tt{ö©ââëöö˝{ö±±â뱲ë˛öõˆöí˚öõ˛öëz˛|N/M˛|t+ +t˛|
  159. t||tU ÌÓˆˆ˛˘ˆ7U˝|4¸T˝|t˛|    {®…È©ööõöõ˛ö{{õööõõ˛öãıˇˇ˛˛ˇıâ˙˚Ú¸˛˝˝˛˝˝˛¸˝¸˝¸˛5˝¸˝ÛÍ‚¡ââÅ·¡ê…àÒÚÚÍÍÈ…È˙Û,4 +#$ÉÉC$$„Èxyyh®@˝ˇ˛˝˛ˇˇ˜ˇˇ˛˛˛˝753)3    Ò¸ù˚ûù˛û˝ùõö·{z뱲ëöö˛{öë©ëââí˝ö˝õ˝öõ{{˚ö¸õööz{˝|MU˛| ¸+˙|z–¡√ÌÓ˘ˆı ˘|˛Tt˚|U??||{ë–¡»ëõõö{{˘|{{˛öõ´Àı˛˛ıÒÒÛ˚˚˝˝˛˛ ˝˝˛˝¸˝˛˝˛¸˚¸˛˛9˝¸Û˝Î¢˚ÈÚ…¡¡È°ê…˚ÛÍÚ˚Ò¡¡Ú˙˚Û "+CK"$"##C¡Hyyp»‡†àÛˇ˛ˇ˛ˇ˛˛ˇˇ˛ˇ˛˛˛˛˝    4=4*32˛*><*˙ù˘ûùùûùõõìì˛{ìì˛{õççå˛{sÖÖs˝{kds˛{zâ©ëíí˛ö {öõöëë±ëööõöö˝õ˛öõöö{˛|¯{||M..˙|˛˛L˚|
  160. {»–∞öìåƒÓÔÔ˝ˆÙ{||UUÙ| 6?U|{â–È—±ö{{˙|t˚|{˝ö íıˇÙÚ˚Ú¸¸Ù˝¸¸˝˛˛˝    ¸˝˝˛˛˝¸˚Ù˝˛¸T˛˝ÙıÍÚÚ¸ÈÒ…®¡…Ú˚ÚÍÚÒ· Í®Ú˙ÛÛccB+,++#$džhh»»ÄxÙ͡˛˛ˇˇ˛˛˜˜ˆ˜ˆ˛7?554>>˛44+˘ù˙û˛ù    úöììõ{{åçå˝{tî¸{lås˛{sdc˛{    z©©âÛıÙ™öõ¸öíë˝ö˛{õõöö˛õöõõ˝|uu˘|./M˚|˝˝ ||U6||{»»±ëööõõì£ÂÓÔˆˆÛ||>?6˝|5??U˙| z®–…©z{||T5U˛|U??t˙|z˛ö ìÛÚ˛˝˚ÒÒÛ¸˚˝˛˛˝˛˛˝˛¸˛˛¸˚ÛÙ˚˚˝¸ÚÍÙÚ˚¸˚˚ÈÚ¸¸˛¸Ú‚˛¡ÍÈâ·˛ÚäcBJ+#,LJ˻ˈÒÛ˝˛ÛÙˇ˛˛˛˛ˇÂ˛ˆ7˛  5>?˝55 
  161. ˘ù˙û˛ùúz¯{õ˛özözz˜{˛zâ©©ëÛ˛˝˛Ùöõööõ˝ö{{˙|{{˚ö{˛|//.Û|t˚ +||6?t|{»»±±˛öõõööík$ÊÓ„||UT˝|U55¸|{zë––©z{˝|??U˛|U5U˝|6>T||z±ëô˙¸˚˚˙˙ÚÚÛÒ¸˛˛˝˛˛˝˝˛˝¸Û ˚¸˚ı¸˝˝ÛÚÚ˛¸0˚Ú¸˛˝˝¸Ù¢……·Í
  162.  
  163. Ú˚˙ÚÍ#+$Ìϰ∏ˇ‡Ë¿Ë¿†ÒÙ¸¸ÚÚˇÌˆ˛˛ˇ˝˛"ÓÂ̈ˇ7,,Bı˝˝7>?67>˘ù˝ûùûû˛ùõ˚{ööõ¸öíë˚ö˝zyqh–©ëëÚ˛˝˛”öí˛öõö{¸|nFt˝|{z˛öõö{||U..t˜|tK˙t||UU||z–»©©öö¸õöôôrkcÙ|{zqâ––—ë{˚|Utˆ|5?5˛|ë∞Ú¸Û¡®˙˚Ú¸˚àÒ˙¸¸˝˝¸˛˝¸˚Ù¸˚˙ÛÛ˝˛¸˚˙¸¸˝¸Û˝˝˛˝Ú…Í·â Ú˛˚?ÛÎ +-ˆ˘ò»Ëˇ»¿‡Ë¿†h¿»†A˛ˆÓ˜˛ˆ˜˜ˆÂÏ˝˝˛ˆÙÎ˚˛˛¸Ì7?5˝ ˘ù˛ûùùûû˛ùõ¸{˛õööõõöõ˙ö ëíëëâ©»»®ëíÛ˝˝˛Ûíëë±íö{˚|m'Ft˛|    uM|zëöõöö{Ù|tˆT˙|q»»©©ö˛õö˛õööë®pqy˘zqqâ±——±©±z||U6t¸|T˝4T˘|z
  164. ÍÚÛÒ»Ò˙¸˛˝ÚÚ˙ÈÒ˚Ùı¸˚˝¸˝˚¸¸˙ÚÚ˛¸˝Ú¸˛˝˛˛˝˝˛˛¸Ú˙ÚÚ˚ÚÛÚÚ˚˚Û ,#c‚ꇻqh»»Ë˲»Ë˛»ê¸ˇı˛˛Ó‰≈ÂÙ¸˝˛˛¸˚¸˝˛˝˝ÛÛÏ/?˛˙ù˝ûùûû˝ùz˝{ö¸õ˛ö˛õööõ˙öí˝ö õ™”ÙÙ”ìö멱íz˝|t˜|
  165. N'N|z±ööõõ{˚|./M˝|T˜˘|z–»……©ö¸õöõõööë⩲±©——Ú—˛± ©ëëíööz||T??T˛|T¯˚|({    ÙÈÈÚÒÒ˙˚˛˛ˇ˝ÛÒÈÈ…Ûı¸Ù¸ÛÍÚÚÒÍ
  166. ÍÍÚ˙Ú˚ıÙ˚˝¸˛ˆ˛˛˝¸¸˛˚¸ÒÚÍÚ˙Û
  167. Kc↲»yzyyqphÄ`Äàiqz¸˛˜ÌˆÓı˝¸¸˝ ¸˚Ù˝˝¸Ù7??˛˛Úûû˛ù¯û˛ùúz{{˘õööõõööõõö˛õöõõöö˛õööõööõ˛ö±±q{˛|t''˛|tlt¸|MM||â±í˛ö{¸|M..˚|L,˝L˛|U6˝|{†—»»©ëöö¯õ¸öíÙıˆ˛ıÛí˛öõö{˝|Ut˛|3ı¸|    qÛÚ–…ÈÚ˚˚˛˛;˚ÚÈÒ˙Ú͸ÛÙ
  168. ¡Ú˚ÛÒÍÍ»¡ÈÒ˙˙˚˝ˇ˛˛˝˝˛Ù¸ˇ˛˝˚˚¸¸˚˚Úä¢Ú,DC¿»¿¿»ËÄ˝z˝yzz{{|y˝¸˛ˇ˝˛˝˝  ÍÎÛ˝7˛ ?¯ù¸ûùù¸û˝ùõz{˛õöõõ˛ö˜õöõõö{õö˙õöõõ˛ö{¸|m'u|t˛˜l˙|z—±í˝ö{Í|U??˛|{q–»……©ëö˛õ˚ö˝õöõõìÀıˇ˛˛ˇÛôíööz¯|3ÛK˛|r˚Û˛Ú©°ÒÒ»˚¸ÚÒÚÈÒ˚˚ÈÈ
  169.  
  170. 
  171.  
  172. Ú¸ÛÚÚÒÈ˛ÒÚÛÚ˚˝˛¸¸˚˛˝˛˛˝¸¸˚˚˙˙Îc¬bÇ¿xy»Ë‡‡¿»qz˛yjBk˝{|z˙˛˛ˆ¸˛˛˝¸˝˝ ÚÛ Ù˚Ó˛    ? ù˝û˛ù˝û¸ùõööõöÙõ˛öõö˛õ {|{{zzözööõõ˛{||tt˚|#˙˜t˚|
  173. {……ëöõõööz{˚|U76T˝|55U˝|TU˛| {â–»»…±íööõ{{˘|{{öõõöõõıˇ˛ˇÙê©ëö˝|t˝|TÚL||z˙˚ÒÚÒÚÈÛ¸Ú˛ÈÒÚÒÈ»˙ÚÈÈ
  174. Ú¸˚˙˚ÛÚÒ˝Ú ˚ÚÛ˝˝ÙÙ˚˚¸˛˜˛˛ˆÙ…Ò˙ÚÚ¸Ûäâ∏yzzyh˲»Ëy˛zJ‰Δe˛{    |{!˛ˇ˜˛ı˛˛˛˝
  175. Ûν¸ ÚÙ¸˚¸˛˛ ?4    ˆûùùïÃÃïì˛õ˙öz˝{õöö˚õö{˛|¸{˙|F''¸|K˘˜+˝|M|{©±±ëööõõööz{¸|66U˛|T??U˙|{z˛»…–—ëö{{˘|??6˛|{˝öíÙ˛ı—©—â{||U?>˝|4LL˙||{Ò¸˚ÚÛ˝¸Û¸¸˚Û¸˙Ò˙˛Ò»˛È    ˚ÈÚÈÚ˚˚Ú˙Û˝Ú˙Ò˙¸˛ıÙÛ˚˚ıı˝˛˛ˆˆ˛¸˚˝˝ÛÍ˙Úxyj˝zhˇ¿»‡y˛zslt||{{|z¸ˇˇ˛˝ı„„Ù¸˚Ú˚ÛÚ…ÚÛÙˆ˛˚
  176. 4)
  177. ¯û˝ùÏĮ̀´ööõ˝ö{{˘|{˝ö õõöö{|{{|efu˙|uMt˝|L¸˜˜˜,˛|M/M{®»…±ööõöõõ˛öz{Ò| {{y†–»®–—ëz{˛|U>6¸|U5U˝|{ô≤˝öô±©—{˛|6?U˝|T˙|4˝˛|
  178. y˘¸Ú˚¸˝˝Ú¡¸˛˝ ˚ÒÈÈÒ»Ò»¡…˚˙˛Ú2ÍÚÎÚÈ¡ÚÍ˚˛˝˛˛¸Ù¸˚Ú͸˛˝¸ıı˛ı˝˛ˇ˜˛Ù°xyzzrzzy†»¿¿»»z˝{˝| ut{Ò˛˛˝¸¸Ù˝˝¸˛Û
  179. ÍÈÚÍ ˚
  180.  
  181. ˙ıùÃÌÌÃîí˛öõö{¸|F&m¸|{˝ö
  182. õöz||{|fÁtˆ|l ¯˜T˛|M/tz—±©±˛ö˛õ˝öëëz˛{˝|˝{ zzqâ—–»©…—âz˚|6>Uˆ|TU|ë≤¸ö±q¸|tÚ|tLS˝|z¯Ú¸Ùˇ¸ÚÚ˚˝¸¸˝ÛÒÚêũ껻®©…˛ÚÎ ˚˛˝˚¸˚ÈÛ¸˝˝˚˙ÛÙ˛ÚÙı˝ÙÙ¸˝˝˛˛ˇ˛Úp˙ͲzJr˛zy¿‡¿©ëz˙|F«my˝˝ÍÍÛÙ˛˝ÙÚ ‚ȸ˚Û˛˝?˛˛5
  183. ˜ùÃ˝ı    ¨õë±íö{||{˛|tFFu˛|
  184. uN|{ëëööõõ{˝|um˘|t˝˜˝˜,˙|q—»…©öõööõõööõ˛öí±©©â˛ëêë±—–˛—±±…©±z˛|tÔ|U?>{©©íí˛ö{˜|U>6˝|56U˝| tlt|y˚¸˝˛ÛÒ°Û˝¸˝¸ÛÚÒÒ˙Úꮮஅ¡Ú˚˝˙˛˙…˛Ú˛È    ÍÍ……Ú˚˚˝ı˝˝˛ˇ˛¸˝˚r˙zhË»»âíöö{˚|mmz˙˝äÚ¸˝¸˙
  185.  ÍÛÚ˚ÛÛ˚?>? ͘ùï˛çïùö±±z˝|u˜| M'.|{±ëööõõ{˛|{{˛|MMt˛|˚˜˛˜L˙|{»…»»âöö˛õöö˝õ˝öëë—˛Ûک벩˛ë≤í{˛|5?U˝|L˛T¸|5=|z—©ë˛ö˛|U˙|6>5˝|6?6˝|&ÊLzà˚˛¸$¡È˝¸˝¸˚ÛÚÛÚ¸˛˝ÒòààÒÚ…Ú˛˛¸˝˝¸˝¸¸˚ÒÒÈÈ…˛©……ÍÛÚ¸˝˝˛˝˝˜˚H˘¸˚Û˙zx»®ë˝öz{˝|˛{A˚¬Û˝˚ÚÈÈ˛
  186. Ú˚¸˙˙¸Ù‚*?˛ â24
  187. ˆùûùûùúöq{˝|&'t||tClt˝| uM||z—ëööõöz˙|.//˝|
  188. l˜˜+˝|t˝|q–……©ëöö˛õö˙õ˛ö”˛ˇ˛˛ıÚëë¸ö{˛|T?=˛|T¯4˙| {—±©ëö{|t>?UÌ|t|{p˙˛˚ÚÛ¸¸˝¸Û˛Ú¸˝˛˛)¸ò©êÒÛÚÛ˝˝¸˚¸˝˛˝˚˚Ú…¡È…êôä‚—ÙÛÚ˚˚Ù¸˝˝¸ıò˙˙˚rzzr˛zy»©í˚öz{¸|z˙ÍÚ˚ÚÚÒ˚¸Ú ˚ÍÚ˙¡âÍ?˛?˛ **
  189. ˚˝û¯ùûùú{¸|tFu|tÌ˝˜ ˙|    {©±ëöõõöö{˚|MM˙|tLKKs˚| 67M||z—©©…©öö˛õö˘õöõõììÀ¸˛…ë˝ö{¸|t˛|ı4˚|
  190. {Ä»©©ö||5?>˝|{{z˝qzz˛{˙|z˘¸Ú»Å¸˛˝˚ÛÛ¸¸˝ˇˇ˛˛˝˝˚Î˚˛¸˝˛¸˝˛˝ÚÚÈÚ»©®â™©ëÈÙÛ˛˚ÙÎı˝˚‡¯¯˚ zzrkz{y»©í˘öz{{||{¬ÍÚ ¸ÚÒ˙˛Ú„…ÙÛÒÒ© ==>˝˝53*2ÔÛûùú|um˚|D˙˜+˙|
  191. â—©íöõõööz{¯|MMı|U75||y–»»…±ööõõ˛{˚|{{ö˝õöÀˇ˛˛Ò±ëöö{¯|Ù˙|â—©—q||T5˛|{qà˚–——–©©â˛qyyx˚˚È®Ú˝¸˚ÛÚ¸¸˝ˆ˛˝Ùθ˝˛˝˛¸ÚÍÅ…†à®°…∞©Ï˝˝˚ÚÛÚÍÙ˙˘¯˚ Ízzrk{|q–»©ë˛öõ˝ö#íëëzz{q˙˚˙ÍÙ¸ÍÈÚ˙Ù̸˛˛˝˝Úä ˛>3*˙Ûûù{M''t˝|L˘˜˝|MU|â—±ëö˛õöôëz{˚|u//M˝|67.˙|
  192. {q–©…——íö{{˙|U>>U||{¸öÀııÛ±©©ë{˝|5U˛|Û˝|>>{©»»—z¸|zq––˛»"©±©©íëëí±©©±—–ò˙˝ÙÚ–Û˝ÒÒ¸˝˝˚Ú¸ı˝¸¯˛ˇ˚˛˛˝˛Û¸Òà…Ͱ… ˝˛¸ÎÍ…ÚÚ@˙¯˚Ú˝zs{|{©»»©ë˛ö˛õööõööí©ëê˙¸˝˝¸¸ÎÚ¸˝˛˛˝¸™ä˚ #4˛+ ù¸ûù|ú¸ûù{|ut˝|L¸˜˛˜˛|
  193. t/.{â–©©öõõ¸öëz{˚|u¸|5Ut¸|    {q––®––ëz{˛|5>U˝|U>6U˝| z±ööõööë©——z˝| 5?6||33˘T˛|U?5{–»»—z˛|
  194. {ë––…»—©©íí¯öë뮆ÚÒ˚ÛÛÚÚ¸˚ÚÚ¸ÛÙˆˇ¸ÙÙ˛¸˝˛˝˛˝˝Û»ÚÈ»Ò͸ ¡©…Ò`˚¸˙˚Ûa˛z{{˛|z–»»©ë¸öõ˙öëë‡˚˛˛¸ÛÛ˝˝Û¸˝˝  ≤ ¸KK4> ÙÙ3ˇùù˝ûù||ù˝ûù{˝|tL ˘˜˜L˛|    t.U{©—©©öõ˝öõõ˛öëz{{ı|
  195. {zzë——……—ëz¸|U?>Tˆ|T|z±¸öë±q¸|>>˛|TT˚|3˝4˝|TU|y–»»—z||{í—»»…©ëí˛ö˘õööô©êÒ˚àȸ¸ È˚Ú…ÒÛ˝ˇ˛˛˝¸˛˝˛˝˛˛˝˛˛Ú¸˚˛˝˚»ÈÛ®ê®Í Í©©ÒËyzrÚÛ˚˚ÚÍj˝z{{˛|{˝»©Òöô¸˛˝˝ÛÚÙ˚¸Ï£ã¸Î,5 *
  196.  
  197. 6+Á˛ùˆûú˛|ˆ¸˜˛˜ ˙|z—»…â¸öõõ˚öííër˚z˛q⩲—……±±z˘|tÙ|
  198. >?Uy±ëööõööÏ|T343˘|{»»®®—ë|ööí©—©ëööˆõ=ööô{{yÒÒ®à˚˙˙ÚÚÈÍÈ˛˛…¸ˇ˛˝Ú˚˛˝˝˛˝˛ˇ˛Ù˝ı˝˛˛˝˝˚Ù˚–……»»…ÈÈ·Ç®XyÙzs&F˛|{à˛»©ë¸ö˙{z˝ö˙˝˚ÚÎÙ˝¸Î˝¸˝Î§‰˛˛
  199. ˛4"˚˝ù˘û|úú˛|K˚˜˛˜L˘|à»…©ëÒöí˚± ∞∞——±©±©±±ë{˛|>>¸|T+4L¸|
  200. U?U{©©ëöõõ{ı|>?6˛|t>>U˝|5>5˝|q»®…Ò©ööõöö±ëööõõ¸{öö˝õ öô®y|zһꡆ˚˚Í
  201. Í©I¸˛˚âÚ˝˛˛—¸˛˝˚˛¸˝˛ ˇ˝˝ˇ˛˚˚¸¸ÚÍÈ…È»êA+xrsÙzE'm||{à–˛»±öö{{ˆ|{zö»ÏÛ˚˝˛˛¸ÛÛ¸˚„Ή§-??˝+ ˛,Aâ¸ù˙ûù|çt˝|+˝L˝|TT˛|y—©…©íö˝õöõ˚ö˛õ˛ö
  202. ™ÛÙÙÛ…ëëíëí˛ö{˛|5?U˛|L˘˘|q—©öõõ˝|UU˙|55T˝|5>U˛|t??U˛|q—®Ú˛˛Ù˛öõööõz{¯|{öõ˛ö=ëë{qÚÛAaêàÈÍϸ â˙˛¸Ò
  203. È˚˛˚àÚ˛˝¸¸˝¸ÛÚ—ı˛˝˛˛˝¸¸˚ÈâÈ Íâ¿HyzKr˛zjrzz{{˛|{y˝»–âz{¯|MNt˝|{yÚ‚˚˝˝¸Îθ¸˚ÛÎÏÌc6>=+46˝
  204.  ,KäÅÛ˚ù˙ûù¯|tTTt˚| 67-||z–©©…±ö˛õ¸öz˛ö¸õöÀˆˇ˝˛Û˚ö¸|TT||tˆ˙|z–©öõ{˛|5??Ë|    {â–êÚ˛˛ˆˆ ˝ö{¸|U>5˚|z˛ö7ëëöÈÚÈÍ
  205. Èààa ÙÙÎÎÙÙ˚ ·Û˛˛ıͲ˛˝˛˝-©JTÛ˝˝˚¸˝˚˚Úê`+ÍÛÈà¯p˛zrr˝zrCC˛{ ||{{y®–¿»–âz{˝|MU˝|t/'M¸|{ÄÛ¸˝˚˚Ùı˛ÙÛ˚˚¸ÙL,54Jb#¸     ̸ùûùù¸ûù˝|MMT¸|tt¸|65||z–»»©±ööõz{{˙|{{ö¸õìÀˆ˝˛ ˝ö¯|TÛT˚|z–©ëõ˝|??U˝|{˝z˛{ˆ|{q»–®Ò˝ˇˆÙÛ…±íö{˚|6?6˝|"5U|z±ëôööÒÍÎÍ· ·®¡ı¸ÙÙÎÈ˝˛ÙÚ
  206. ˝¸˛È3T+˝˚ÚÚ˚¸˚Û©
  207. Ù¸Ò®¿ËËh˛yˆzqà––»»–»z˚|67.Û|y˙ÛÍÛ˚˚Û¸ÛÛ˚˙ÙLk"+34˚˛¸ù˛ûùù˛ûú˝|./.˝|676˙|    {i–©…—±öz{˘|5?>T||{˝öõõ´˛˛ˇÚ±©ö¸|U˛|tÚT˛|T>Uz–©öö˝|Ut||zqë––˝—±âqq˙zqâ–—»ÒÙ˛˛ıÛÚ——ë{Ú|??U|z±ëööÚıÚJ4·∞ÈÛ7,ıı˛˝Û˚¸¸˛ˇ¸˛,˚TT+˚ÚÚ˙ÚÙ¸¸˚¸˙»»¿»ËËËhh`pàć––——»»©±ë{˙|UU||tLKKt¸|    u'u{Ò͂کͲ˚ ÙÚ˙˙˚„ ıÏ,+˝6 ˙˚ù˛û˛ùûõ¸|t¸|UU˚|zi——©—©ë{˛|t>>U˝|T55t˝|zë˝ö´ııÛ±—©{˝| >?U||¯˝|>?Uy–©ö{¸|{zⲖ…©±©¸±í¸öë벩
  208. ±©© Ú  …—±z˝|5?6˛|TSt˝|,T>U||â±ö뽡ÙÒ3,*ÈÚ6¸ı˛˝˝˛˝˝˛˝¸˚¸˛˛ˇ˝Û3È˚¸Ú˝¸˚˘x¿¿˝»‡˛»
  209. ËË¿xËÒһꩱ˛©˛ë{˛|UU˝|t˛˜ˆ˝|    ''|q˚Û˚Û˝˝˛˚
  210. ¢äÚˆ˛=˛¸ù˙ûùõöz{{¯|˛{    zzâ–—©»—q{¸|U?6ı|UUz±í˚ö©—z˝|U?6˛|4L¸|4¸T˝|5U{⻩ö{˝|    z©––»—±±©ë˘öõzööõõ˝ö˛ëôôëëz{¸|>>T|4˛t˙|z—ë¡˛ˇ˚4S Ú‚
  211. …)6¸˝ÛÛ˛˝»òÒÙ˛ıÚ…+*˛Ú˙¸¸˚ÛÚÒê»Ë–Ë»»ËË˝» ‡ÒÙ˝˛˛˝Û©ëëí˛ö˝|6?U˛|˛˝˛˜ˆt˛|u|z˚˛˛˝˝¸˚ÛÛÇíLc¯5˛ıÛ¸ù˙ûùõ˛öíë˙q ââ©——–»©ëíâ{Î|    ??Uy—ëööõõ˛ö˚|tÙ|T43˘|z–»©ö{||{ö±—»»…©ë˛íõõö˚õ{|˛{õöõööôqyz{{||t˙|4˚˙|4{…±°˛ˇ˚˚˚Ò¡ê
  212. ˝˛˝˛¸ÙÙ˝˝©òiı°*+Ò˚˚˝˚ÚÒÿËÄiq˚yqàëëâÚÙı˛˛ˇı™ëëöö¸|5U||t˝˚˜˜¸|{Ò˝˚˝˚¸¸˚Ú…K,DÏˇ¸+,$+¯¸ù˙ûù˝õ˛öëô벱    ë±±íëâööíí˛|T?>¸|3˛4¸|U>U{˛©ööõõö{ˆ|T>?U˛|U>5¸|U5t˛|{»»®ëö{|{öí±……±ëíö˙õö˝õöÚ|U??U¸|˘3˝|T|{©©¡˝˛¸¸˛ÛÚ˙˙ÛÈÒ˛¸˛˛¸˛˝Ì∏I)…·àâ°È*ëÍ˝Ú˙˚˘pyy˜z{{zëëôöÛ˛˛ˇÙë©í{¯|˚¸˛˜t¸|y˙¸˝˙˙˚˚˙ÍLKc ¸˛    C,,"I*ı¸ù˙ûúö˛õ˝ö´ÙııÙ í˝öõìö˝|>?T˛|4˘t˙|q—±ëöõõ{˝|U˙|U>5t˛|U??U˛|5??T||{©±®ÚÛ™ööõöö©…±íõìÙõö{˝|U5U˙|U>U¸|4¯3˛|5?U{¡©¡˛˛¸˝˝¸ÚÒ˚˛ˆÛ˝¸˝¸˝˝ıˆàꮡ¡®à¡¡âëÇ˝˚Ò¯x¯z#K{˛| {ëëööÛ˛ˇ˛Ú®—{¯|˘˝˜˜ˆ˝|m|{Ò˝˝˚®˙ÈÈÍL+ ¸˚
  213. „BC"3!A+Ô¸ù˙ûõ{{öö˛õ´ı¸˛ıíööõöz¯|Lˆ˙|z–±©öõõ˝|6?5Ï|T˛|z©–∞Ûˇ˛ıìöõõí©™ííõõ¸{öö˙õö˝|6??6ı|T˜T˛|6?u{È©·˛˝È˙¸ÛÙ˛˝˛˛"˝˛Û˙¸¸Ù˝¸˝˛˛ˇAò·ÍÈà®»Äà©JÛ˘»yzzK#¸zrKs˚|    q©ëö™Û ±–y˝|5?U˛|    KTttK˛˜˜+˛|N't{@¸˛˝Ò¸ÍÍÚ#¯ Çââ
  214. *J
  215. ˆ˛ù˘ûù{˛|{{öõöõìÙ˛˛ˇ”˛öz¯|4ÛT˚|z–…©ëöõ˛|U??t˝|{{z˛{Ù|{q»®òÚ˝˛Àöíìíöõz{˘|{{õõö˛õöz˝|U6U˘|44ˆ˝|TU|r…©¡˛¸ÈÒÒÛÛ˝ˇ¸˛Í…ÒÛÙÛBÙˆˇ˛¸òêÈÒȰÈÒ®ÈÈ*)xy˛zC#k˚z{˛|UN˛|i©ë˛öëâ{˛|t??tˆ|TK˝|..|{ê˙˝¸˘Û√¢…√˝˛¡¡©ëa*3+Èù˜ûù.M¸| {õöõöıˇ˛˛Û±±z˝|T5˛|TÚL˛|    U>Uz–»©ëö{˛|T5˛|{yë»˝—©âqzz˚{zzâ˝—Û˝˛Ùí˝ö{¸|U>5¸|{˝öõõö{¯|t˝|4Ù˘| °……⽸ÒÚÒÚ˝˝˚˛Ú˛ÒÙÛ©â3˝ıêò¡ÈÈ…ÈÚ…ÈÈÿx¯z˛rjs˝|M/.||{»©ë˛öz¸|5TÚ|tt¯|
  216. q»Ò¸˚˚¬ãä√˝˜˜˛ ˇ˛˝·jj"44J˛ûùu}¸ûú.M˚|{˛öõÛÙÛ©—â˝| T??t||4˘˝|    ??|ô–»©íö{¸|{zⲖ»©±©±©˝±——……»——–—±±—ıˇˇ˛ˆÀõõööz˙|>?5˝|5T|z±¸öz˙|5?>T˛|T¯T˘|r—Ë»ê¸˛˛ÚÛ˙˛˝
  217. Ú˚ÚÈ ÍÈêò+òÒ ÍÈÈÚÒ…ËyrC˝zjͲ˚¸ˆL˛|MN˛|q–©ëööı|U5U˝|UU˚|U¸|z–®Ä˚ÛÚڠ䄡˛˝˝˜˛ ˛˛ÙâÅba +3˛ûuU}¸ûú˚|U||{ë˝öô©±{˝|U?U˛|4t¸|T¸T˝|5U{®»»±ëö¸|    z®––…©±±©ë˙öíë뱩±±©±˛ë    â™À™≤ëöíë{Ú|??U|q±ëöö˛õ{˚|>?U˚|T4T¸|U>t||s……©±ë˚˛˝˚Û¸˚˛¸ ÚÍ¡
  218. ¡®…à°Î°®ÚÚ¡Ëpyz##r˛zÍ˚¸˚˚¸ˆ˛˜ ˙|{–»©ízˆ|t??5˛|T775˛|t//M˛|z–˛»˙˝¡˚ÙääˆÍ
  219. ˙ bäÅA!*2͸ûü˝ûù{¸|U75||z±ë˝özÌ|t34T˘|y–»»©íö˛|{ë—˛»…±í˚öõöõõöõ˘öí¸ö©—©z˝|5?5˛|tT¸|    U>T|{©±ëöö˛õ{Ë|5?>||{…»…©±ôÚ˛˝˙˛Ù Û¸ B˚-∞3,…»Ò®ÍÏÍÚÚ¿x˙zr˚¸˚˚¸˝ˆ˝˜˜T˚|
  220. {¿»—±{||t>>˙|tt¸|tUt˛|tNM||{q–»®Ù˝È˝ÛÚÛäÇ4˛ ˝¸ +K*aâ    ¸ûù|tTT{,˝|66˛|â±ëöõöı|U??U˛|5>6˝|T=6t˛|z–»©©±öõ||öö±±»…±ëööõõö˛õöö˛õzöö¸õöö˝ë≤ëz{¸|?>t|4˛˘|z–©ëö˝õö{˘|6?6˝|T56U˝|TU||z¿…¿»©±öÈ˝˙˛˝Û˚˝˛¸˝˛˛ıÈ4+ÒÚÚ˝ıÈÈÚÒ»y˙zr˝˚¸˝ˆ˛˝˜ ˚|{Ä»—ë˛|>?>˛|    {zyqêêqqzz˛{¸|{{zy»®êÚ˛˛Ú˚˚˙ÛãäÇ4˛˛76 +B+Jiâ˛ê˛û ùtT<4TTìT˙|q—©öõ{˝|Ut˚|U6U˝|U>6t˛|5?>˛|z–±®—±ööõ{õööë…±ëööÙõ{|˝{öõööëqyz{ˆ|˚˙|{–…©ëö˝õööz˚|U>6˝|U??U˚|{q˝»—±í{z¸˝˚˛˝¸˛¸˝¸˛U+ÎÈ˝ˇ˚ÒÚËxyzzrK˝z˚˝¸˛˜˙˜ ||NN||{¿»–q˛|6>U|{q¿˛–»¸–»†âë˝qh†–˛»Ú˛˛ ÙÚ¸˚Íccb+ ˝ ˛  +BJKaâêêëÎûû|T4¸Tã˝˙|z—©öõ˛|t??UË|z–»®Ú˝˝”öõõöõöë±íööõ˚{öö¸õzÚ|U??U¸|˘T˝|t|{»»©©ö˚õöëz{|{zq––»…—±ë{||{ÈÙı˛˛˛˝˛¸˝˝˛˛ ¸*Ú˙È°Í ÈÒx˝z rzzr˚Úirs+˙˜ ˆt||''||{–»–y¸|zq––˝»˛©
  221. ëââëë©©…—±—˝»®Ò˝ˇ˛˛ıÈ˙ÚÛkc# ˝˝  +JÅSaë©âêût<¸T4t√¸L˚|z—©ö{˛|5?>˝|{{˝z{{ˆ|{zh–»òÚ˛˛ˇ™˛öõööõõ{{˘|{ö˝õö{˝|U5U˙|U>U¸|4¯3˛|5?t{»…©©ö˙õ    öö©hyz{{|{˛|˛{ zzqi»—±…»»—ë{˝|{ÅÍÙ˛˝Ò¸˛˝˙˙Ú¸˝˛˛ ˝¸*ÍÚ˙˙ÚÈòx˝zrK˚z{{˛|L˝˜t˛|Nu||y–»–y˛|{q–¿˛»©˛ëí¸ö˙ëâ˝ë™ Û” â®¸˝"jkC ˛˜˙
  222. Í"+bêiJaââÒt¸<4T<t ¸ t||6T||z—±ö{˛|TU||{zë©»˝—±©âq˝z{˛zq©––®xÒ˝˝˛™ë±˝ö{¸|5>U¸|{ööõõö˝|6??5ı|T˜T˛|6?|z–»»±ö˘õööë»È¿iâũ⩻»——»©©ë©…©±z˙|q¸˛˛˚¸˛ˇ˚ê»È˝˛ˇˇ˝Ù¸Í
  223.     ˛ÒàËyız{{˚|tKkt˘|{†»¿–q||{ë—»»…»©âıöíÙö ôâ©`¸˝zIjjK¯ 4B©ëRJâê˙TTt˛|T<<s˝ 4||5?U||ë—±ö˚|{q»––»˝©±±©˛±˝—–˝—…®Ò¸˛ˇ˛ˇ˛ ë©—±ö{˚|U??U˛|UU|{ëëöö{˝|56U˘|44ˆ4˝|UT|q–»…©öÙõíëâ©ëë˛ôë©©â˛íëëö{||t>>˛|{¸ˇ˛˝˛˛˝Ú°ÈÚ˛˛˝¸Ú!·Ä»ËËËHËpız$M˛|MNM¸|mM˚|q–®à—ë|zíë©»…®©ëëÛö{ˆö˛ë    yÚ˝Ò@bjK ˛˝
  224. *3Kbâ∏êiâÔù˚ûùt|65||{—»±ö˝|
  225. {q––»©—±©íí¯öí¸ë±ëëÒÙ˛ıۙ멗±zÚ|    U?>|{©íöö{¯|t˝|4Ù4˙|{®˛…ëöÒõì˛À´ãíô˙ö{˛|U?6˛|SÚ˛˝¸˝˛˛˝¸˚¸˛˝¡âÅê†˝Ë¯y˛zCC˚zrL˝|N'/u˛|N''¸|y–†ÒÒ±ë˛ö뽩ë˛öõõö¸õ¸ö˛|˛{˚z"{{|{˘˝ ı$KK# ÙÍëââ۰ëiâÍü˚ûüûúK43¯|⻩±ö˛|z±—»»…©íıõöõõ˙ö
  226. ëòêâëôë——ë{˛|t>?t||tTT¸|    55||z—ëöö{˙|5?>T˛|T¯t˘|y–……±ë˛öÛõìÀˆˇ˛˛ˆÛ˝öõö{¸|U˛|˙ı˛˝¸˝˝ÛÛÚÒÚÒË¿˝x˛zr˚z{Ù|u˝| {q–†Û˛˛Ùëöëô˛ë±ëööõõ¸{ööõõ˝özÚ|y˚˝ı jC+,‚
  227. °ââêë˛âëâ˙uù˛ûùu}û{˛|UU˚|y—˛±
  228. ö|{öö±©»©©íÚõöö¸õ    ööëâëë±±ëz¸|U?5||˛3˙|{©—ööõõ{¸|T>?U¸|t3˛4T¸|U6˛|z–……©©ëíö˚õ˛{˘õãˆ˛˛ˇ“ööõõ{¯| ¸ÚÛÚ˚¸˚˚˝˝˚˛ÒËËËy˛zr#j˝zyy˛z{{ı|{z©–òÚ˛˛ˇÚëâë˝öõö{¯|{öõ˝ö{˝|˛.˙|zÒ˚ÍÏÙÙK#j+SSiâëâëë˝êëˇuù˛û
  229. }UUú{||5??T˝|y—˛±ëö{õööë©©ëööõììõõì˘õö|˝{    öõööôqqyz{˜|T˚4˙|q–©ööõõ{Ë|5?>||z–…¡˛©íööõ{{˚|t||{ö˝õ    ìˆˇ˛ˇÛëëíz˝|TT˛|T˝    #¬Í˚¸˚Ò˛˝ Ò…ÛÒhx»»Ë»y˙zyp¿»˝–»âëyzz˝{zzq®–»»Ò˝˝˛Ò໩˛öz{˝|U55¸|{z¸ö˝|M77.˚|{ ˝˝˛˝Ù+jâ 43*Jiâ©©äj˛âëëi˝˘ûù˛|TUt˛|{q–©—Ú“ööõöõöííëíööõìıõö{Ú|5?>¸|T˙˙|    z–âíööõõö{˘|>?5˝|T55T˝|UU||z–……©——±ö{{˘|6?6˛|{˝ö™ıˆÙ—©—ë˝|U?6˛|3TKIÛ˝˛˝¸˚˛˛˚ÚÚÒPyy¯ËË»˚zyp˲»˝©Ⱳ©…—»»˝–»®Ú˝ˇˇ˛˛˝Úà»»…öö{˚|6?>˝|UT|z±í˛ö˝|tMt˙|y¸˝˝˛˝¸
  230. i¡©òò*bBa˝âbjiij©J3¸ù˙ûú˙|{z©–®“˛˛À˛öõ˚öz{˚|{{ö¸õz˝|t5Ut˙|5>U¸|˘˝|?6|y–©í¸õöö{˚|U>6˝|U??U˚|    zâ–……——âz{˛|U>>¸|U5U˝|{y±¸öë±±{˝|??T˛|T¸|{˛˛ˇ˛˝˛¸˝˝¸Ú¯pzzp¯˛»˝zyp¯˛»©©ëí˚öíëëà˝®©©ë©ÍÛÙÙÛ©ë©…—ë{Ú|??U|z±í˛ö{˘|Mu||{˘Ù ˝¸˙©jC‚aâëiiâ©ââëâë˛êëJJ‰˙ùûõz˛{zyë»—±ë±˝˛ı˙öõ{¸|UT¸|{öö˛õ{˛|U˛?tı|4¯˛|U?6|q–©ö˚õöíëz{|    {zâ––©©—ëz˚|6>Uˆ|t5ty±í˝öëz¸|TTˆ|z˙˝˝˛˚Î ÒyzzyË»ËyzzqË˲»©±ëííÌö˝ôë©—±z{˛|U?6˛|tT¸|T>U||â±ë˛ö{˚|t//.||q¸ ˝¸Ù˙ÛÇb#bJKaâűêê˛ërjââÏ˘ùö˛—±˛—˛± ı˛˛ˇ”ë©©âöö{˚|>?>˝|t|{ëööõö˝|U66˘|T44ˆT˝|U|{®ëö¸õöõõ˛ö©pyz˜{zzqâ»——˛©±z˛|tÔ|T??|멸öı|U>5˝|U:Ò˛˛˝¸Ú¡Ëxz{zz¿‡Ë‡Ëyzh–˛»…©ëíëˆöõ˛ö˛õ˝ö˝ë±ëy{¸|>>T|T˛t˙|z–©ëôôöz˚|!tMM||zÚˇ˝¸Ú˝ˆ,+΂iiJKJââjëëjjëâÍù˛ûùûùùöíí˚ë™ıˇˇ˛˛ˆÀ뽩z˘|UU˝|t?>|{âí˛ö{Ù|TıT˙|zë˛õö¯õöâ»»©˛â˝ë±˝—±©©±ëíí{˛|5?U˝|L˝T¸|    U>|z—©ëöõ{˝|t˙|6?6˝|    >?3˚˛ı·®¯I˛| z†ËXxêÄËhà–¸©ëÚö{|˛{
  231. õöõööôqyz{{˜|3˚˙|{»…ëô˛öô{˜|    ˛˛¸Û˛˛ "Î+jêëiRjJK˛jâëê‚˚ûùúõ˘ö õìÀ”” íô±©±ë{˛|T6U˜|5?U|{—ë˛ö{˙|??5˝|4˘3˘|{†ö˛õöö¯õö˛ôíöö™“Ú íôëííöë˝ö{˝|?>˛|L¯˙| {â—©íö{||T>?|zÈ˚Òêz˛| z¿ËòÒÙÙÒ†»…â˛ëí˚öõö˝õ¸özÚ|T>?5¸|4˘3˝|t|{©»©ë˝öëë{˙|u*˸˛¸˝˛˛˛˝ 53ââ°©âB+jS44J∞Ì˚ûùú˛õöö¸õöö˛ôëë©ëz¸|    ??U|tL˘|q—ë˛õ{˚|U?6˚|T43T˝|t55˛|ë—öÚõ˝öìı˝˛ıÀ˛öõööõö{¯|ı˙|q–©íö˛|>?>˝|{zzyyzz{{˚|zy{|{zq–»ËxÒ˛ˇˇ˝»®±í˘ö˝{|{{zöõ˝ö{˝|U5U˙|U>5¸|4¯3˛|U?U{©»©ë˚öëqz{¸|{êÚ˝˝˛˛˛˝˛¸SSJjŰaJ3*ëJJSI÷˙ûúõõ{{zö˝õöö˝ëö{{˚|Ut|T˚4˙|z–±ö˛õö{Ë|??U||q±ëö˘õ¸{zõõöõõì´Ù˝˛ˇÛô¸ö{¯|Ù˙|q–—±z˛|56||{zi®˝–˛—©âëq˚zq†––»®êË˝˝˛…©ëí˝öõ{ˆ|{˛öõö˝|6??5ı|T˜T˛|6?U{»»©ëô˚ö˛ëqz{˛|qJÙ˝˛˛˝˝¸—ôqqòëëJSJ"ôòqjÔ˚ûùúõö{¸|˙{˝|5>U¸|4˘T˚|{–©ö˝õöz{˙|T?>U˝|U65¸| UU|{ëëöö™íöö˛{¸|tU||{{ö˝õã˛˛ˇÙ±ëíöë{˝|U5˛|Û˝|>>|ë–—±{¸|{y©––»…±©©±ëëí븱˝—»˛©—Û˝˝˛Û˝©˛ö{¸|U>?T¸|{˝öz˝|56U˘|44ˆ˝|TU|z–»»ë˛öô˚ö    ë©©qyzyI͸˝˛˛˝˚ô…˚¸˙Ò©·ÚÛÚ¡òâı˚ûùîõ{z¸|tT˘|U?>T˝|T¯3˛|U6|{—©ö˚õöz{˚|5>U˝|>?6˚|{z©˛ö™âz{˛|t¸|6??˛|{z˝ö    ´˛ˇ˛Ú±±©…z˝| 5?>||T3K3˘4˛|U?6{©»»±{˝|z©–»˝©ëë¸öõ˝öíí±±˛ëíö”ˆ˛˛ıÚ…˝©íz˙|U>5˝|66|{ëëöö{¯|t˝|4Ù˙|{⻇©ëöô˘ö˝ë®®»h*Ù˚˝˝˛˛˝˝ıÛ˝˛¸ÛÛ¸¸˚˝Úëa·˚ûú˝õ{˝|??>UÙ|T˜T˛|6?u{–©˛ö¸õööqz{Ò|    {{y©–…©©ëz˝|U??¸|tUT¸|zë˛ö홙벱â¸|5>T||TT˚|T˝4¸|U|z–»…±{||{ë——©……©í¸ö˚õÙöí™…©ë˛©±ë{˛|TM˜|    5?>|{©ëööz˙|U?>U˛|T¯T˘|z–‡»âöô˝öô˙öô˛ëê˝˚˝˝ı˝˝¸˝˛˝¸Û Û˛˚Ù˝ÚëàÚ˚ûúö˛õö{˛|U>?5˘|tTT3˜˝|55|z—©ö˘õööë†yz˛{˝|˝{
  232. zzqâ–——©—â{˚|56Uˆ|t6Uz±ëë˙ö{ı|tt˚|TL33t˙|
  233. {à»……±z|zö벅©íöö˝õö˜õöö¸õ˛öô˛ë©±©z˝|    U?>||t+33T˝|
  234. UU||z—ëöõõ{¸|t>?U¸|t3˛4t˝| U6t||z–ÈÈ»ëëô¸ö˝z    öôëôöíöô˚˛˛˝ ˚¸˝˛¸ ˚ÚÚÛÚÍ˚˝˚©ê·ûUU˛ûõ©íöõõz¸|t¯|Ùt˙|â—©ö˜õöë»–©˛â˛ë±±˝—±©©±©z˛|UT˙|ttT˙|t??|y©©ë˛öõõzı|6??˝|6>5˝|U>6˝|q–®±±ôö{ööë©©ë˝ö˘õö¸õ{{öö˝õöö˝ëííz{¸|56t|4¸4˙|{©©ëöõõ{Ë|U?>||{®»…»©ëëöz{{˙|{{zëíöö·˝˛˛˝˚Î˚¸ÚÚ˙ÚÚ˛Ú˚˚¸˙ê˙û}U}ûù|z—©ööõö{˙|U>U˝|˜3˘|z–…íö¯õöõõöôë©ëëô≤…—…±ë±©©íëíí{˛|5?5˝|T˛4¸|U5|{˛©ëöõöõ˝|U5˙|5UT˝|U65˝|>?5˛|q—©…ÛÛ™öõõööëí˛öõõööıõz˛|¸{˝z{{˛|UU˚|4˙4˙|i–©ööõõö{˘|5?6¸|55T˝| T5||z»»…–»ëz{˘|tMt˛|{zëö븲˛˛˝¬ÈÙ ·ÈÚÚÍÈ ÒÈ…Ú˙aÿ¸ûù|{©±íö˛õ{˚|U??U˝|    T34¸|U˛|{®…™ööÚõ˛öÛ˝˛ı ˚ö{˝|>=˛|4¯t˙|q˛©öõõ{˛|U??tÈ|    {q–®…˝ˇˇ˛í¸öõöö¸õöˆõö{Û|t??6¸|˘˝|Ut|q–©ëööõõöö{˚|U>6˝|U??5˚|{q–»»–qz{˜|&''¸|zâë    ˝˛˛˝    ˚Î
  235. ¡˚¸ÚͲÈÒÒȰÏt˝ûú||ë—©í˝õz˚|TU˜|t˙|U??||{ë—©íöõõööz˛{¸õö˛õöìÀı˝˛ˇ”˝ö{¯|ı˙|q˛©öõõ{˛|>?U˛|{{zzyzz{{ˆ| {y»–®òÛˇ˛˛ˇ ˛öõöõ˛ö{{˚|{zöõõö˛õz˝|U>>U˙|UU¸|4¯˛|    M?5|i–©ëöö˝õöëz{|{zq»–»–q{¸|N//˚|uu˝|{|{âà¸˛˛¸˝˝ ÍÛÛ˙˚ÛÚ˛ÒÚÚÛÒ |üûûú||q–©±ö˝õö{¯|56U¸|tT¸|5>T|{Å–©˛ö{{˚|TT|{zõ˝ö˛õ´˝˛ıëöö{¯|Ût˝|t|q—©©öõö˝|Tt||zq©—–¸—©âëq˚zqâ—–˛—Û˛˛
  236. ˇı™±íöõööõ{˝|tU¸|{˛ö˝õ{˛|U˛?ı|4˜4˛|U?U{©»»â˛ö    õöõõöö©pyz˛{˝|˝{    zyq®–—»»—z˙|MNMı|mm|zê˙˛˝˝˛˝Í
  237. Í˚¸˚˙˚ÛÚÒÚÚÒÚ    ˜ |ùùú{||q—ëëö˚õö{˙|>?>˝|U??U˙|rÈÒ…í{{˘|U??5˛|{ööíööõõÀ˛ˇ˛Û±±{˝|56˛|Û˝|    >?|q…©©ööz¸|{zⲖ…˛©˛ë˝±˝—–˛—±±©Ú˛ˇˇ˛˛Ù ë©ëëöö{¸|U??5˚|zí˛öõö¸|UU˘|4˛ˆ˙|z–»…ë˝ö˝õööâ»–»˝â˛ë±±˝—»˛©ë{˛|t˙|K˛ Ïl¸|FÁm|yˆ˛˛˝ÙC°Ú˚Ú…˙ÈÈÚÚ¸¸h˜4||uù{||ⲱö˙õööz{¸|t˚|UU¸|{zÅÒ…q{˝|>?6¸|UUt˝|{ôííööõõ´Û ©—z˝| 5?>||T4KLL˘4˛|
  238. T?6{©©…ööõ{˝|zâ––»©˛±ë˜ö˝ë±¸ë™˛À™©ëëâ©ë{˘|UU˝| 5?5|z±íööõö{˘|UU˛|tˆ3˘|â–…©ë˜öô˙ë©ÚÚ…©ë뱩˝ë{˛|M/.˛|t ˘˜ˆk||{|em|{ê˚˛˛˛˝Û……ÛÛÚÒ˙ÚÚ¸ÒiAÏ˛|6t||{—˛±ö˛õú˝õööëqz{{˜|˛{zq¡ÈÈq{˚|65tˆ|U6|˛ëíöõõöö±ë¸|U6˛|tT˚|t˛4¸|U|z—©©öõõz||{ö±—»»…©ë˝öõõö¸õöõõÛö멱q{˛|U6t˜| >?||q±ëööõõ{˚|U??6˝|T˚4¯|z–¡…©ëÒöíÙ˝˛ıÚ˛ëööë{˝|..t||#˛˜¯ˆs||˝{|y˘˝˝˛˝˝¸Ùı¸˛˛˚¸¸ÒÈhqiiÊ˙| q±©…©öõõúõõú˝õöë»†qq¸y
  239. qëââ©——…Í¢{˛|U˘|˛t˙|5?6{˛©íöõõöö{ı|UU˙|TTL˘|{°©©ö˝õ|{öí©…©±ë¸öõöö¯õ˝öõ¯ö©ë{˝|
  240. U??||T4t˙|{±©ëö˛õz˚|U6U˙|LK++LT¸|
  241. 5?U||z–È…©ë˝öz˘{z˛öí Ù¸˛Ûëëíë{¯| ˛˜˜ˆÌ||˝{|y˸˛˝¸˝˛˝˝˛˝˝¸˝¸¿pqiqqÁ˚|{˛±©ëöˆõö˚ë±±—˚±˝í{||t??˝|t4˛T¸|5U|y˛©íöõõ{ı|6??˝|6?6˝|5>>˝|q—©©ö˝õ{õöö©…±í˚öõööõö¸õö{{zöõõ˚öëöz{˚|TU||4¸T˙|q—©ö˝õö{˜|Utı|U?>||z®»…—©öö{{¸|tUt˝|{ööôô™ˆ˛˛˝©â©z¯|C¸˜˜ˆt|˝{|yà˙˛¸˝˝˛˚Ú¸¸˝˛˚phh`Äh˜t˝|    {±±©±ëöõõú¸õú˝õ˝ö™Ù˝ıÙ™í¸ö˝|U>U||t˜4˙|{˛©±öõõ˝|U6t˚|UU¸|U5U˝|5>U˛|q—©…íõöö¸õöëëíööõõ˛öõöõõöö˝õö¸|˘{˛|U66˚|˙˙|z–©íöö˛õöö{˙|U??U˝|>>5¸|    U|{z»……—ë{¯|677˚| zëëô™˝˛˛Ù®–q¸|Mt||t˛˜ˆıˆ˜˜˙ˆı|˛{em{q–Ò˛˝¸˛˝˝¸˝˝Úpx¯ËÂ6˛|{â—˛±ö¸õz˙{˛õúõÀÙˆˇ˛˛ˇıíööõz¯|TıT˚|{Ä»©±öõ{˛|U??tÈ|{Å—©©í˝õöõõöõ˝öõö¯õö˚õz¸|Tt˘|>?6¸|˘˝|55|z–©ëöö˛õ˝ö{˚|UU¸|6>U¸|{zâ––—ë{˛|U?7¸|tUU˙|
  242. {©âëâ Í†»†{˝|.'M||lÌkt˛|kÏ˙ˆk˛{
  243. t«m{â»h˚˝¸˝˛˛ ¸ÈhpËÿ»»Ëfi˛|{â—©±±ëõõ˛{˚|t˝|{˝õìı˛˛ˇ ˛ö¯|TÛ˚|{©˛»öõ{˛|6?U˛|    {zzqqyzz{{¯|{zi…˛©öõõöÀııì˛õ˝öõö˙{öö˙õö{˛|U??6Û|4¯˛|t?>|y–±ëö¸õ˝öëzz{Û|{zq©–»—©z¸|56Uı| MM||{»©ëöôë—z¸|'Fı|s„ÏııÏs˝{tm|z»¿Ä¸˛ˇ˝Ú!që®»ËË»»ËËÈ
  244. |{z——±—±ëö{¯|6?>t˝|˛öõìˆˇˇ˛—±ë˝|T6U||tÚ4˛|T?5{©˛»öõ˙|{zq±—–˚—©âqy˝zqi©—±˛©ö˛õÙ˛˛ˇÙõöõ˛ö{{¯|{zõöö˝õz˝|6??T˘|ttL˜3˛|t6U|â–»©ö˛õ öõööõõöë»hqzz¸{˝z    që©—–±©±q{ˆ|tKLTt¸| ./M||z–©ëíëqÔ|˝{|ˆ{q»¿©hÚ˚ÚqzzëĆ¿»Ë˛»¿»¸z©—…»±íz{˛|U>6¸|U66t¸|z˛öìÙÙ…±©{˝| ??U||3KL3˘t˛|6?Uz˛»©öz¸|{z†––»—˛©ëëíë멱˚—±©±±í¸öÀ˛˛ˇÙ˝ö{¸|U>>˚|{í˝öõö{Û|TÛ˙|{–»»¿ô˛ö õõööõõööëன©˘±—±±©±ëëíz||U?6¸|T˝t˛|
  245. .M||{©—©ëë{ı|    mff|{{|met˝{|ll˝{z–»©âëëôz{zëâà†Ä¿ËË¿»»Ì—˝±z˚|>?5ı|T||z±¸ö±z¸|65˛|T˙|T˝T˝|    tU|q»…»íõz˝|z©–»»—˛±ë˘ö˙í˝ö˛õÀÙ˝˛Ù©©öz˙|5>5˝| 65|{±ëööõõöz˘|66T˛|T˜T˘|q–‡Ë†ô˛öõöö¸õ˚ö Û˛ÙÚ©ëíöí˛öz˛|66t˝|˝¸˜T˙|y–®âí¸|t˙|ffm˝{mÜÜ˝{eße˛{z»»®©…âôëözôëë˛âà»˝Ë»Ê˛±ö{Û|t˚| t??||ë±öõõööÙ|Ut˚|t˛T˘|z»®»©ööõ||{í±—»»…±˝ö˝õöö˝õ¸öõ˛ö õõìÙıˆıÙ“â±ë{˛|TT˜|    6?5|z±ëíöö˛õ{˚|>??¸|T˛T˝|TT˛|zËËë˝öõ˚{˚ö´ı˛ˇ˛˛ı™ô¸ö˝|t˝|t˜˜˙|z–»©z˛|t''˙|˛{˛|˛{|˝{tt˛{    q»¿Ä…Ù˝Ù™ô¸ë˝â˛hppqhööz˛|U>T¸|3L˝|
  246. 5?T|z±ëöõõ{ˆ|T??5˛|U??U˛|t>?U˛|{®©†»í˛ö|{˝öëëööõö¸õ˝ö˜õööõõ˛öííë©ëz˝|5?6||t+3T¸|UT||q—©íö˝õ{˚|UU˘|˛t˙|6?6||z–»ëöö{ˆ|{z˝öíÙ˛˛ˇÙëë˛ö¯|t¯˝˜T˚|z–…±z˛|F'F˛|    {zyqâiqyzz˜{zyÄ»»®ëÛ˛˝Ù˘ëyzzy˛qphõ{˛|U?>˝|4˜3˙|{©±öõ{˝|55˙|UU¸|U5U˛|T>>t||{Ⱪ®©ëíöõìöö˙õö¸õöö˛õ˝ö{zö˛õöõõöô˛ëöëz{¸|65||4¸4˙|{–±±íö˝õö{¯|55˚|t˚|
  247. >6||z–¯®y{˘|5>5¸|{ô˝ö    Ùˇ˛ˇÙ±©©í{˛|U¸|˚˜¸˜ L||NM||z»±{˛|mF|{zq©–»—»»˛©âiq˛yqqà»»®†àêÚı˝ÙıÛëââ˛ëy˛zyqqp˛àÍ{˝|TU˛|TıL˙|ë±öõ{˛|>?6Ë|z®—……©âë˝öõöö¸õ˛ö˘õööõõö{||¸{¸z{{||tUT˚|˙T˚|{®»©öö¸õöz{˚|T??5˝|>??˙| {qÿ¯Äz{||t55¸|=>6˙|z±˛öÛıÙ—®…—z˛|67U˛|T +KL ˘˜ ||M'N||z–»©{˝|{zq––»¿®©˛â˝ëâ©©¿©®»®†ààââÚÙ˝ı˝˝Ù©âààâë˛zyqqh¸àŸ¯|4Û˙|â±íõ˛|t?>t˛|{zy˛qzz{{¯|{zâ—˛»©®ÚÛ ö˙õ˛ö˝õö˚õ˛öõõöÚ|U??5¸|˘˝|U|{⻩ö˘õööz{¸|T¸|˛U¸|{y®¯»z{˝|6?>Ò|z±ë˝öë©—q˛|U7.˝|LT˚|t ˝˜˛|tN˛|â»»©{˛|{q––»©»®˛âëëöö˚ë˘âë™”˛Û ëàà†©yzzyqphh˚à¢|LÚ˛|TU||â±ö{˝|t||{yâ—––˛±ííëëâ˛qzyyq⻲—˛» àÛ˛ˇˇÀõõööõõ˝ö{{¸|{{öõ˛ö˛õ{˝|5>5t˚|tUT¸|¯4˛|U?U{©—±öö˘õöëëqz{ˆ|    {{zyâ––¯â{˚|tTÙ|>>˛|q—ë˝öëë{˝|UÒ|lCKt˘|z–˛»
  248. {||zâ…©»©®â˙ë˝öëôö˝ëà¸ëôöôôëëââë˛yqhh˛àhh˝àÙ||57U˛|¯T˛|??|{±±í{¸|{q»–©ö˘õ˛öííë±±©±±˛ë®xÚ˛˛ˇÙ˛öõõööõ{˝|tT¸|{öí¸ö{˛|5??6ı|4˜T˛|5?t{–»±í˜õöö©–»hqy˝zyqqââ—˛–»—ë{|t6U˚|T¸L˛|5?U||{–©ëööõözˆ|M.M˝|MNu¸|mm¸|{à»»…©z|zëâ©©®ââ¸ëô˛ëôô˝öôzëëâëâ˙ëââë˛yqhıàÏ|U?7˝|4T¸|,˚4˛|T?U|z–©ö{˛|{ë––»…í˘õöö˛õúú˝õöõööâÒÚ˛˛ˇˆ™ööõ˛ö{¸|U??U˚|zíööõõö˝|TUU˘|4ı4˙|z–»©öˆõöö˝ëô±˝—±±—©˛®â©ö˛|??U˝|T¯˛|U˝|i–©ë˛ö{ˆ|//M˝|.'.˝|''F˝|{q–†®©âözö뱩ââëë˛öôô˚ëô˝ö{zzyyq˙ë˛yqpâÛàÀ|T5Û|Tt¸|t|{±—©ö{||z≤±»»©¸õöö˝õöö˜õöëÒ˝ˇˇ˛˛Ù™ôöõöö{˙|TUU˝|6>U|z±¸ö¯|UT˛|Tˆ4˙|{®……©öÙõ˝ö™˛ı
  249. ˆıÙÒê®ààëëö˝|6U˝|ı4˙| z–…âööz||U/.Ú|t¸|um˝|
  250. {â–®…Ú…ëëôô¸ëízz˝{zzy˝ë˝öz{˜zyyqâà√˘|UUt˝|Tt˚|t˚| ë—±©ö{|ööí©–ëÈõööë†ÒÚÍ™ööõõöz{˛|U5˜|U?>||ⱸö{˚|U??U˝|3˙3¯|y–…©íööõö˜õööõõ´Ûıˇ˛˛ˇ˛Òxàëöö˜|Ù˙| z–©©íö{||77.˚|{{zz˛{ı|{z»–®Ò˝˛˝“ôëôëíëëzˆ{zô˚ö{˝zrjzzyqqhÓàfi˙|U??U˛|U??U˛|t>?6˝|y—±∞±ö˛õöí©ö˜õú¯õööõö˝õ¯ö{˝|    5?>||T3˘|z—©öö˛õ{˚|U>U˚|TL˛+KT¸| 5>U||z—……©ëíö˛õööz˝{õöõ˝ö ôëÙˇ˛˛ˇ˚ê©ëö˜|Ú˛|T˛|
  251. z–»©ëö{||..˝|{yâ»˝–»àqyzz¸{ zzq®–©®®Ù˛˝˛ı¸ëz¸{ss˘{ôë˝ö¸zb¢aqpÎàT˙|UU¸|U5T˛|T>5t||{q–±ÛÙ“ö˛õööõú˛õú˛õöˆõz{zöõõööõííâëëöz{˚|UU||¸˘|â—©öö˛õö{˜|TÙ| U?6||z–……©©±˛ö{{˚|t||{{˛ö ëêàÙˇˇ˛Ò®»±{˛|66˝|T¯||U7M||q–»®ëö{˚|zi––»»…»˛©Ⱳ©±©»»…˛—…©àâÛ˛˝˝˛Ùëâëq˚{dΔѯ{y¸ëyzzyqhêh¸àhà„U˚|˛{Ò| zâ±±Ùˇˇ˛´õõö˛õúúõöõ˙{ö˙õö¸|¸{z{{˛|U55˚|˙˙|q–©ëö˝õöz{˙|5??t˛|T>>U¸| U|{y–…©©—±ö{{˘|U??U˛| {öëëêàÚÛ…©…–z˛|5?>˝|44t˝|T˚    t||.7t||ⲻëö¸|zà––……˛©ëëíöííöí˛ë¸âëë©Û˝˝˛Ù˛©z˙{sl¸{dÑs˛{    ëâàââëqqphÁà²|{zq¸ëôzz{{˚| {{zë±±êÛˇ˛˛ˇÀ˝ö˝õ{˜|{ö¸õö{¸|t¯|??5¸|˘˝|6U|q—©±ö˚õöz{˚|U5˝|T>>U¸|    {z©–©©—©z{˝|>?U¸|UUt˝|{ë±ëë˛öë©ë˝|5>Û|t+˝|
  252. tT||z–»»©íö˛|    {ë––»»…©âë˜ö˛ëííôíëíë™”ÙÙÛ ë©q˝{ll¸{ss˛{sÉc˝zàà˛âààh¸àâÏàΔ|zë±——˛±ë˛±í±±˛ëâë벱˛—Û˛˛ˇˆ™ë©ë˛ö{¸|5>>˚|zíö˛õì˝|U??5˙|t˚|¯˛|M?6|ë–©±ö˙õööëz{Ú|{zq©–—˛©z{¸|T>5ı|UU{ë±ë˝öízı|tÌ|{à»»…©öö{|{í±»»…©˛ëˆözz˝öëë¸ö˛ôqz˝{d≈d˛{£ÏÙÙ΢˘zëâ‡àŸâ˛±—±ëˆö≤˝±ö±ôÛ˛˛ˇ˛Ù™ë±©±ö{˙|6>5˛|
  253. t6U|z±öõõìs˛|t>??˜|tL˜T˛|T>T{©»»±ö˘õööëËpyz˙{˛z
  254. qâ©——±©©±ë{˛|UÔ|>?5z—©ëí˛öˆ|U??U˛|M76M˝|..U¸| q–»»©âöö{{öí벩ëëÙöz|{{˛z˚özz˙{ss˛{‚ÙÛÏÎÛÛ‚¸zyy¸àâ¸àâˆàhˆà–˝±ëíö˜õ˚öõööõ´˛À´öë©—±q{˛|Tt˜|>?U|z±˛õã{˝|t¯|4Û4˙|z–»©±ö˜õöë®®˛©±±˛—¸±ëí¸ö˛|T??˝|    t4T¸|5U|ë—©ëöö{||T5T˚|U6U˝|T66U˛|U7.U˝|q–»®®ëô¸ö
  255. ëë©ëëöôöözz˜ö{|Ù{slt˚{z‚Ù˙Ûrz˛yqh¸àë˝àâÈ଱íëö¸õúõõúÛõ¸öë±—ë{˝|6?5||T+3T˝| tUt||âíõõìã{˘|65˝|3ˆL˙|{â»…±ööˆõ˚ö Ù˛ıÙ“í˝öõõöz˝|U?U||t˜4˙| z–©©ëö{|t??U˙|{{|    zà–»»±ÛıÙí¸öëëíöz{˚|{{z¸öz|Ù{Ö¶l˚{ÇÙ˚ÛÎÍiyqq¸àââêàâêÁàÄ‘íöö˛õúˆõ{zö¸õöö˝ëíëz˚|65||˝T˙|zí˛õììz˚|t??6¸|3˝T˝|Tt˛|y—¡©±ööõÀÙ˛ˇ˛˛ıöö˝õz¯|TÙT˚|
  256. {»»©©ö||5?>˝|    {zzqââàqyz˛{˚|    {{zq––…»ëÙ˛˛Ù˙ö{ı|{öëôöö˛{lÜet˙{ss˚{äÙ˛ÛÎβÍ…iphˆàë˛àâêÓà@êö”ö˛õúõõú˛õ    úúõõúõö{||¸{¸z{{||tU˙|˚t˚|{í˚õö{˚|UT˘|˛t˙| >?5||z—……©±ööÒõöõöìı˝˛ ëíööz¯|4Û4˚|    {—»…±z||U5˛|{q©––—––»˝—©ââ˝q    ià…—–©»®ô ˝˛ı˛ëíöz¸|Ff˚{ |{zíëëö{{tܶ֘{ssã√βÛÚ˛ÍÈ¡âˆàââÈàh`ôöúú‹õõ{{˝|{{õú˛õúúõzÚ|U??U¸|˘3˝|U|{™˙õöz{˘|T5Uı|t?5||z—……±±ööõõ˛{¸|˛{˘õ    ì˛ˇˇ˛—±©±ö˝|T6U||TÚ4˛|U?Uz–»»±z¸|{q»–—»±˝©˚ë±±©©±±…¸© Û¸˛ ë©±ô{|{˝|met˛{|el˛{z©ëöö˛{tl˜{ã˛ÙÛÛ˝ÍÈ¿˜àh˛àâ¯àê¸àê˙à@`ôõ˛úõ‡{˜|{˝õúõö{˝|5>5˙|T5T¸|¯3˛|6?u{™¯õöz{˚|U??U˝|??6˙|
  257. {q–……——íö{{˙|U>>U||{¸õ
  258. öõìÛÛ—©±—â{˝| ??U||3+L4˙˝|>?Uy–»…—z˛|    {q—–»»…©©ëÙö¸ëíöíÙ˝˛ٙ뗩z˛|t|{|¸{|{|Ü«l˛{q©ëëöz˚{ss˚{äÎÛÚÍÍÈ·†Êàê˝àê¸ààôõ˛ú˛õ·˝|.76˚|zö˝õz˝|6??5ˆ|t3˜t˛|6?|zäöõõ˛ö˝õööz{˚|T¸|U5U¸|    {q—–……—ëz{˛|U>U˝|T>6U˝|zöõ˛öõ˛öë±±{˝|t>U˛|T˙|3˝T˝|TU{â»»©—z||{ë—…»»©©ëí˘öõõÙöí´™íôë±q{˛|
  259. Fu{||sɉ„k˛{lt˝{ââëëöz¸{Ñ≈Ñ{{z{˛zrÅ¡¡⁄àêöõù˝ú˛õ–˝|..M˝|    .U|zööõõö{˝|UUT˘|4ı4˙|röõ¸ö¸õööëëyz{ı|
  260. {zyâ—–©±—ëz¸|U??Uˆ|T|zöõ˝öõ˛özÙ|T˙|TT3T˘|z–˛» ±z|{ö±©»±©ëë¸ö˛õö˛õöõö{{ööõ˝öõ˝öëqz˛|{tFm|{|cı˝ˆÏ˘{q©ëíööô˝{skÑs˚zyyqê‚à êàêàà@ôöúùúú˙õ…˜| t77U|z±ööõõ{˘|tU˝|4ıT˘|í˛õ˝ö˙õöö®¿qy˚zyqëⱲ—˛©±z˘|tÙ|>?Uy˝ëö˛õöı|U??U˛|U?>U˛|T>>U˛|z»»®∞±ëëzõöí©©âë¸öõõöõöö˛õöõö{˛|¸{zz˝{˚|˝{|Ɉ˚ıÏ˙{ z»ââíöôööz{{˚zyyqpààâàh·àÄ@ôõ˛ùúú˘õ“u˛|TT˚|
  261. UU|{±ööõõöö˙|5??U˛|t˙3¯|jì˝õöõ¸ö¸õöô뮩˝±——©˝±ëö˝í{˛|6>¸|T+3L¸|U?U{â©©í˝õ{˝|5U˚|T5U˝|t56U˛|U?>t||{©—®ÒÙÙ ¸ö˛ëöö˙{z˝ö˝õöÛ|mÁt˚{kˆ˘ı˙{
  262. z©âëíôööíëy¸zyiâh‹ààöú˛ù˛ú¸õ˛öõÀ|t ˜+˘|y±ëö˝õ{˚|5>U˚|T3˛+Lt¸|5>˛|rí˛õöö¯õö¸õëâë Ù˝ıÛí˛öõ˛ö{˛|5?5˛|L˘˘|q©±©˛öõ˝|>?6Ë|z»–®Ò˝˛™˚öz{˜|{¸öõõ{˛|mMt˚|{ufm|¸{s¯ıÙ{{s•l{{z©©ëëööëö˛ëôyyqp˙àh„à êöú˛ù˝ú˚õ˛öõŸlˆ˜˛+˙|z±©í¸õz{˜|TÙ|    6?5||rööõõ˛öõöõõö˛õööõõú˛õööÀıˆˇ˛˛ˇıíööõöö¸|TU||tˆ˙|z¿©…©©öö˛|U?>˝|{zzyyzz{{˜|{zi»»®®Ù˝˛ ôëíöz{˝|tu˘|zë˝öõ{||'m{˝|˘{s√˘ıÙıÏ{{s≈l{{z©©âë¸öëëâÏàê¸àêˆàćôõú˚ùúú˚õ¸ö÷ˆ˛˜˜¸|t|{±±ëö¸õöz˘|>?6˝|U>>U˝|tU|{íöõõ¸öõõ¯{˝õúõöõõìı˛˛ˇ“˝ö¯|TÙ3˚|{©®»©±ö{˝|T||{zâ±––¸—©âëq¸zqi©——…—ÚÙ˛˛ˇıë©—ë{¸|.//t˘|z©¸ö||tFFt{|˙{|£ÏÌ˘ıÙÙıÏs˛{s˛{q©âàëíëö˛ë˝àâflàÄôõ˛ùú¸ùú˚õ˚ö̘ˆ˜˚T˛|57|z—±ëö˙õöz{¸|T5U˝|U>>U¸|{zí˝õ˝ö{{˚|U5U||{ö¸õ
  263. ööíˆˇˇ˛“±©ö¸|U˝|Û3˛|
  264. t>Uz©»……±ö{¸|{q»––…˝©˝ë˛±˛—
  265. –—±–—±©±Û˛ˇ˛˛Ùë±—z˙|uMM˝|N'u˛|q±í˝ö{|˛{|{{|˚{√ˆ˘ıÙııÏs˘{⩲â˛ëââ˝àêààâëÔàê˚àê˛à¿êöúùû˛ùú˛ùúúõõö˝õ¸öíÊ˛ˆ˜˜˝|77|z—±öö˘õöëqz{Ú|{zqëö˛õööõ{˛|UU¸|>?6˝|zö˚õìÙÙ ±—±{˝| >?U||¯t˛|>?Uz˛»…±ö˝|{ë––»…˛±ëˆö˛ë±ëë©âëíä™À äô±ë{˛|MM¸|tt˛|u''˛|{â©âô˛ö{||˛{tÜet¸{sÀ˙ıÙÎã˚{z{{y»àÄ˝âÒàââÏà êõùûû˝ùú˛ùúúõöö¸õ˝öíí͈ˆ˝˜t˝|    UU|ë—±±öõõ˝ú˛õöö±†qyz˙{˛zqë©—öö˝õö{˝|6?>˚|t˚|{˝õúõöõõö©—z˝|U?>˛|4T¸|4¸T˝|5U|ë»»˛± ö{||z≤—»»©©ëí˝ö¸õÓöëz˝|./.˛|#ˆ˜˜ˆ#˛|t˝|z—âë˝öz||{{te¶m˘{sã£√√ãs˝{ss˛z{z®®††ÙàâÒàê¯à†Äôõù˛û˝ùúúùùúùõ˛ö˝õöí˛öíëÃ˛ˆ˛˜L˙|{—˛±öõúúõ˝úõõööë®–—˘±——˛±ö˝õö{˚|UUı|U>Uzöõú¸õ˛ö˚|tÙ|T44˘|z¿˝»©ö{|ööí±…©±íöö˛õö˘õ{|{{˜öz{{¸|MN˛|˚˜ ˙|{»©ëë¸ö¸{|Ó{ å•Ézz{zໆ†Äıàâêıàê˝àê˚àêëúùûû¸ùúú˝ùúú˛ö˝õöí˛öíëëflˆˆ˜˜ t˘|벱ëöõúõ˝ú¸õ˚ö    ôöí©≤ëöíëí˛öõö{˛|5U˚|tLK3Lt¸|t??|z˘õö{ˆ|T>>U˛|U>5¸|U5t˛|{à˛» ¿»®ë{õõöí©©íöÚõö˚|{{|{˚|Mt˙| ˛˜˝ˆ ˜s||{{||{⻩ë˙ö˙{tdl˚{s˚{kk˝zໆÄĸàââààâ˙àêêÔà†êöú˛ûùûû˝ùúú˝ùúõöö¸õöíööí˛ëÒˆˆ#t˝|MU˛|z—ë±íö¸õ˙ú˙õÀÙııÛ™˛õöõ˛ö{˛|>?U˛|t˚T˝|tU|{˛õ˛úõõ{˝|Ut˚|U>6t˛|U??U˛|5??T||{ë©®»»êË¿ôööõöëëíöõöõõö˛õöõõö¸õÛ|U//.˚|#˜˙ˆ ˜C||tu{|{⻩ë˘öz¸{tÖ¶t˝{Ñ≈Ѹ{˝zy†»††Ä˘àêàâê˛àë¸àêÙàÄÄëõúùû˙ùûùúú˝ùúõöö¸õíëíöí˝ë¡t˙|
  266. N/.||{±±©±ë˝õúúõú˚õ˛úõõıˇˇ˝˛´¸õö¸|6U˛|ˆT˙|öúõú˝õ{˛|6?5Ï|U˛|
  267. {⻩»ËêÒ˝˝Û˘ö{{¸|{{˛ö˝õöõ˛|N.M˙|tMU˚| ˜˜˘ˆ k|{ff|{{Ⱪëë˜öz˜{˛s¸{zyyà–˛†¯àââÈàÄàëîÙù˛ú˛ùúú˛ö˝õöëíí¸ëâÀ|t˚|.M||z±˛©ëö˝õ{¯|{{õõúõìÙ¸˛íööõö¯|Tı˙|qö˛ú˛õ˛|U??T˝|˚{Ù|{z†»®»Ëx˛˛ˇ ˝öz{ˆ|{ööõöõöõ{||.//.ı|lÓ˜¯ˆ
  268. ı|{{ff{|{»©˛ë¯öëíëëzz¯{˝zqp¿»»Ä†Ä¸àêÙàâÛàhàíîñùùú¸ùû˝ùúú¸ùúõöö˛õööëëíëâ¸ëŸ&n˙|
  269. {ë±±©©íöõõ{˙|55U¸|zõúõõÙˇ˛˛—ëíö¯|TÚ˝|tU|qâ¸õ{˛|T5t||{zë¿˝—©ëqzz˚{zzqâ˝»¿ËÙ˛˛ ˇ ôëz{||U66T˘|{öëöõööõ{||MNM¯|tÓ˝˜¯ˆıs|{{t|{|z—©âëëıöÙëâⲻ†à®àà®Ìàâààêààê¸àhêíî˛ùîúù˛ï¸ù˛ú˚ùú˛öõ˛öëëíí˝ëâëëÿmm˚|{z©˝±íö{˛|Ut¸|>?>˚|{ö˛õÙ˛˛Û±±ë{˝|>6˛|Û˝|??|ë®ë˝õ{¸|    {zi––—»©±©˙±—……»——––—»»Ë˯˙˝˛˛ˇÙ≤ë{˝|566˝|UU¸|qëööõõö{Û|t̘˜¯ˆÏ||˙{â©©âëÒöíëëíâ˝ëâ®®Äà®®àâ˘àê¯àëì˛ïúîîïïîïï¸ù˝úùûûùúõõ˙ö˛í¸ëàâ뀸|{z˛ë±ë±íö{˛|T7?5˚|t˘|
  270. {ëööõììö±±{˝|6?5||T4T˛t3˙T˛|
  271. U?U{©»†öúõõ¸|    zâ––……±±©ë˘ö˝ë±±˛©»Ë»êÚˆ˛˛ıÛëzÙ|576˝|{ë©í˝öz¸|U/'m˚|l̸ˆÌÉs|˘{z—©©âëíÚö¸ëíëâÊàâ˘àê˛àÄàëìïñ˛ïîîïùúîïï˝ù˝ú˝ùúõ˛ö˛õ˝öí˝ëààââëŸ˛zöëëí±˛öíö{¸|t6Uı|T>U||z—öõöõöíz¸|UUı|3T˙|y»»Ëöúúõ{||{ë—–»»…©í˝öõö˝õöõ˝öíöë©®†Äàôöìãìöô{|U?6˚|,+L||M6¸|z—©ë¸ö{˝|N'F¯|t˝s||˛{lm˝{z©†©ëâíÙöôôö˚ë„àê˝àêê˛àÄêíî¸ï˙î˛ïùù˚úùùúúõ˝ö˝õ˛öí˝ëêë˛àÃëöí˚öõõö||Tt˘|tL4+LT¸| ??t||ë±ööõõöı|T55˝|TU||tt||t¸|{¿»»¿öúúõ||zö≤±»©±ë˛öˆõzz˛öëⲮëëö˛õö{˛|76T˝|4˝L˘|
  272. â—©íöõöõöz{Ú|˝{|˛{lßÖ˛{z©©°©âíÙöô˙ëâŸàâíî˝ïúîìãì˝î˝ïùúõìì˚úõõ˛ö˝õ˝ö¸ëâëàêâ—˛öõ˝öõõ{||M/.¸|t˙3˛| U>t||z—±öõõ{ı|>?6˝|>?6˝|>?6˛|{ⲻàõúúõ{õööí©©±íöÛõ    z||{zzyyqq˛ö˛{¸|t¸|˛˝T˙|q—©ëööõ˝öz{¸| tFFt{||{tml|˝{tm|{{z˛©ââëëÙö¸ë◊àâãå˛ï˛îì˛ãìîìîîï˛îõììî¸ú˝õ˛öõõ˚ö˝ëí¸ë–ã˘õ{˛|/.t˝|ˆ4˙|{©±öõõ˝|6>˙|Tt¸|tUT˝|U5T||{â±±…»Ò´õúúõ˛ö±©âë˝öıõö{ı|t67U˘|+˙˙|z—©±ö˛õ¸öz{˝|
  273. F&m{|{{eß¶t˙{z벩âëâíˆö˚ëÒàêÌàê˛àêëìåïïîïïîîúîììãììîï˛î˛ìõúúìì˛õìööõõöõõ˛öõõööíëëíí¸ëæ˝À˚õ{˝|t˝|TÙT˙|ë±ëõ{˛|6??˙|{Ò|{z†—©—»Û˛˛ıíööôöëâëë˛öÛõöz||MU˘|U76T˙|L˚˜|N.˝|
  274. z–…©íööõööõ˝özz{¸|{|{|tt¸{zzë©©â©˝ë˜ö˛ëâëëâ˝àâÎàêıàêíìˆîú¯î˛ì˚õíööí˛ö˛õ˛ö˛õ˛öëíö˚ëŒııì˛õú{¯|Lı3˚|{©±ëö˝|6>T||{zyqëââqyz˛{˚|{{zë——©©±Úˇ˛˛ˇÚòëâ¸ë˛öõõ˛{¸õ˛öõõö{U7?6tÚ|t,˚˜˜ |/.˝|q—…©˝öõõ˚öííëzz˚{˝zyë⽩ââ˛ëô˜öôëë˝àêààâflàêëäå˛î˝ìåã˙ì¸îì˛õìõõííöö˛íöí˘ö˛õ˛ö˛í¸ë퓲ıíööõõ˛|uu˝|tı T||56||{±±íö˙|{q†—––——˛±——±˛â ëqëâ©–—±ë—©êÚ¸˛ ˘»†ëööëööz{˙|{{öõ˛öõõö|U??Uˆ|LK+˜˜t|.M˝|â—©©íö¸õ˘öíëëâ똩˙ëô˜ö˝ëâ„àêààê¸àêêâãççåå˛îììãã˚ìã˙ìúú˛ìíä¸í˝öõ¸ö˛õ˝öíöö˝íëí—Ù´˝ö˛|M/N˝| ++˘ ||U?>||z—©ëz¸|zq––»…±˛©˝íöíë˝±    ©±©©±©ë±Ûı˛˛ˇ˛Ú»¿®ë˛ö{¸|UU˚|z˝öõõö||tı|˙˝˜t˙|{—……ëööõõ˝öõõ¯ö˝ëâ˛ëâëííÚöí˛ë˙àâËàê¸à êêàäåççddÖçå˝îıìãìõ˝ìäã˛íö˛í¸õ˛ö¸õööõ¸ö¸í–˛õöö{˛|&'u˝|TT˚|,¸˛|    U>t||ë—±ö{˛| {ë—–»»…©±©ëö˚õÙö´˝ı    ÙÒË»®»®ëöz˚|5??U˛|TT|z˛ëôöõõ¸|M6U˙|,˘˛˜ ¯|q–…©âö˛õÒö
  275. ôëíöëööëöëëıöôëëâ˘àââààâÂàêâäå˛çållåÑççåå˝îãìãì˝ã˝ì˛íöíãììí˛ì˜õ    úúõõöõõöíö˙í«ú˛õ{˝|utÚ|T+L˘|z±©©ö{||zí±…»…©ë˝ö˝õú˛õú˝õ˛ö˚õ öí™â©»®®©±ö{˘|U¸|6?5|z±ëëö˛õ{˛|U775˘|    +ˆ#t¯|
  276. z—……©ëöõööõËöôôˆö˛ë˛àâ˚àâÏàê˘àâãåçÖÖ˚çÑå˝çåî˛åîîããååîìõììíäììãã˛ì˜õ˛ú¸õ˝ö˛íööíö∫˝õ|{˛|{¸|tMM˝|tT˙|t˚|{벱 öö|õöö©…±±íöıõú¸õö˙õ    ööíëëâ©—ëz˝|56ˆ| >>||q±±öõöõõ{˛|TMMı|tt˝|u'&¸|{©…©©ë˝öõÓöô˛öôëööô¯öôëâ¸àâÚàêÓàëìïïıçåå˛çååˆîõìããììãìˆõ¸ú¸õööõ˚öííªõúú˝{˘|./.˝|677U˛|U??5˝|{ë˝±ö˝õö±©íö˛õú˛õú˛õúõú¸õöö¸õ˛ö˝ë±âz{˝|5?6||4˛T˙|{—…ëöö˛õö{˙|UÛ|.'m˝|{©–…®âí˜öõÌö
  277. ôôöëööëôëëâÿàêíî˚ïÚçåç˚îúúì˛îìåîúìì¯õ˝úùúúõõúúõ¯öíöí»õúõ{{tem{˚|tu˚|MUt˛|T65˝|{ë—±±©öö˝õ˝ö˝õú˛õú¸õúõúõú{|{{˛õ˛öôëëqz{{˚|tt|t˚T˙|â—©ëö˝õöz{˝|N//M˝|N/Nˆ|z»˝©ë¯öõ˝öõ˝öõıöôôëöôööëëflàê¸àÄëíîïï¸î˝ïîå¸çéé˘ç˘îúõìˆõ˘úõõúú¸õöíöíí˝öµõú{{|fm{˙|{{Ò|{z±—ëÚı˛”¸õ˝öÒõúõúõ˚|˚{˝|5>6¸|t˙˙|q–©ëöõõööõõöz{˛|MNt˝|./N˘|{zâ—©©ââë˘öõÈöëö¸ë˝àê˚àâÊà@àëìïñïù˝ïîú˛î˛ïå˘çé˝ç˙ïîîúú˘õìúúîúúù˛úõõúúùú¸õ˛öì¸ö«õõ{{l¶e¸|{zö¸ëzz{{˙|{{z©—±±…˛˛ˇ´˝õ¸ö˙{˜õúõ{¸|UU˘|>>U¸|˘˝|>U|q—©©ö˙õ˛öz{{Û|
  278. {zyâ±—†©ëöë˚ö¸õËö˛ë˛àâàâàâ˘àêˆàê¸àê˝à àíú¸ñ˛ïùùïù˝î˝ïîåå˝çéé˝ç˙ïîî˘úõúîîï˛ùúî˛úùùîú˛õúõö˝õö˛õ’ õõ{{|t{||{z벱 ë±íöíö±öëëöí˝ë©±—©ëôëı˛˛    ˇ´ööõööõz{¯|{öõö˘õ{˛|U??>Ù|T¯˛|M?5|ë—…©ö˘õöõ˝öz˙{˛zqë©—–˛©âëí˝öõööõõÒöôô˜öëââ˘àâàâ˝àâàë˝àÄêíùûû¸ñ˛ïùùïïù˛úîî¸ïç˛ï˘ç˛ïîùùîî˘úîîïï˛î˝ú˛ùú˛õúú˜õœúõ˝{|{öë±öíí˚öõöõ¸ö    ≤±©ëíëí™ ı˝˛Ùëë˛öz¸|U>>T¸|{˙öõõz˝|5>6˘|TTS4ˆT˛|    t5|{©»…©ööıõööëëí˚©±±˛©˝ëí¸ö˛õÓöô˛ë¸öëëÔàâÒàê˛àêêëìñóûññ˚û
  279. ùñûïùïùùïïú˛î˛ïîåîîçï˛çïîå˝î˛úî˝úîùù¸ïîúùúú˝ïúúõõÙú¨õõ˝{õöë˛íëíöıõöõ˚ö”˝˛ı ë©—íö{˚|5?>t˛|5U|{˝ëíö˛õ{Û|TÛT˙|z–»»ëõö˝õú˙õ˚öëí˝öíëëí˘ö˛õöõõ˘öë˘öôö˝ëôíë˙àâ¸àâÁàêêäçè¸ó˛ñ¯ûùùïùùïùÍîúúîîïù˙ïîïù˚ï˝úùÙú∞õõ˛{¸öíöÚõö˘õöô©—ë{˝|t˜|6?>|{©©±ëööõõöö˙|t>>U˛|T˜4˘|{†»‡Ëôõõö˙õö¸õ¸öõööõıö¸õÔöôëô¸ë˙àâààâëıàêàêÙàòêäç˚è¸óññûñ˛û˛ùû˛ùïùùïùïïùúîúïù˙ïùïúî˚ïùúúï¸ù˜ú–õõ|õõ˚ö˚õúúõõúúıõ¸öë—±z{˛|U?6˛|LST¸|    5U||q±©©±ö¸õ{˚|>?6¸|T3˛4t˝|UU˛| qËËööõööõö˚õööõõ˝ö˚õ˚ö˛õöö˝õ˘öë˘öôí˝ëâ¸àââààë˝àâàê˘àêâãé¯è˙óñûñûû˘ùï˙ùúîî˝ú ìîîååîåîïîîú˛ïîïï˝ù˙ïùúïùû˙ù˙ú™˚õöõõö˝õúúõúú˚õözö¸õööô˛ëíëz{¸|5>U|T˛4˙|{˝©ö˚õ{˚|tÓ| ??U||yÿËëööÙõöö˘õöõõ˙ö˝õÓö˚ë¸àâààâ˝àâààâÍàòêâåÚè¸óññ˛ûù˝ú˚î˛åîïîîï˝îïùú˝ïñïùîúúùï˜ùúùù˛ú¥õõúúõö˙õ˝{    õõúúõúúõz|˚{ zzyyzz{{||tt˚|4˙T˙|Ⱪ±±ö˚õö{˘|U>5t˝|UUT¸|
  280. 6U|{q–ˆöˆõö¯õöõöõõ˝ö˙õöõ˜öô˝öôöô¸ë¯àââ˛àââ¸àêÔàêêäçè˚óñ¸ûÚùúùúúîúúîúÚîïïççïïù˛ú˝ïùúúıùñõ˛ú¸õ{{˘|{õõúõõö{Ú|>?6¸|3˘˝|T||q±©©±ö˙õöö{˚|T>?U˝|??6˙|zà–‡‡ôÏõöö˝õööõööõö˛õÔöô¸ëˆàâ¯àê˝àâıàêòêãçÌè˘ó˛ûÓù¸ú˜îãåå˙ï˛î¸ïîî˝ú˜ù™˝õúõõ{{|{|t˘|{˝õz˝|U>5˘|5U¸|T¯˛|U?5|q©±±ëöõõúú¸õööz{ˆ|tU¸| {zâ——©Ë»àôöõöˆõöö˚õöõõ¸ö˙õÒöôöö˛ëâ˝àê¸àââààêàâê˛àêàêòâãéÍè˙ó˝ûÔù˘ú˙îãåå¸ïîîúîïïç˛ï˛úÙùù¸õ¸{tÜÁe{˙|{ööõõ{˛|U??>ı|T˜3˛|U?U{q©±±ëˆõööëqz{{˘|˛{zzë®——˛©âëö˛õ˛ö˛õöö˘õö˚õ˛öõöö˛õÔö¸ë˙àâë˘àâààëààêÚà˛êäå˛áÓèó˛è˙óü˛ûÏù˘úÛî˚ïîúïïùùïˆù§˝õ˚{    |mmt||{t.M˛|{ööõö˝|U5U˘|Tˆ¸|U|{â±…±ëö˝õúõõú˝õöë––†˛ëqq˛ëâ©©˛—©±±ë˛ö˚õöÓõööõ˛öõöõõÙöõ˝ö˛ëÒàâÈàòêäç˙áÏè˘ó˛ûÍù¯úîúúîú˛îåîîïï˝îïúî˝ïùï¯ùùõõ˛{ît˚{¸|&'m˛|zíöõö¯|Tt˛|TÙ˘|z……©©öö˛õúõ¸ú˛õö˚벱©©˛±˛ë˝öıõö¸õö˜õööõö˛õöô¸ëâıàâ˛àêÙàê˙àêêàãéè˘áÌè˙óü˝û˝ùúÓù˘úîîúî˛ú¯î˘ïî˛ïùï¸ù•˝{î¶ç˝{k‰Ì√t˛|mt˛|{±íõöö{˚|U??5˝|4˘T˘|{©…©±±ö˛õúõõúúõúú¸õöõöö˛õú˝õ˝öÈõöõõú˙õö˛õö¸ë¯àâ˛àâààâêààâÓàòâåé˝è˘áÔè˘ó˝û¸ù˛úÔù¯úî˘ú˝î˛ïîïï˝ù
  281. ïïùùïïùùïùΩ
  282. õõ{{åç|{{sÏ˛ıˆˆÉ||{¸|ë±ö˛õ{˚|5>5˚|T3˛+T¸| U>U||{ë……©±íöˆõúúõõúõõúú˛õúõõú˘õúúÙõöõöˆõö˝õööõõööõ˜ö
  283. ëëâëààâààââÙàê¸àê˝àê¯àêíå˘è˙áè˙óü˝ûùû˚ùúúÌù¸úîúúîîúî¸ú˜îúú˛ïúî˛ïùùãúõ˚{ì˚̈ˆt˙|ö±ëö˛õö{È| U??T|{ë—…±±ëöÙõú¸õúõõú¯õúÌõö¸õöö˝õööõõööõõˆöëöëë¸àâ˝àâÂàêêòêäç˜è˘áÚè˘ó¸û˛ùûûÁù˙úîîúîúúî˛úîîúúÒîúçúõ{õ˝{Ã˚ÌÓˆ„˛|t˛|z±ëö˝õöz{˙|U??t˝|5>U¸|U||z©—©±±˛öõõú¸õúœõ¸ö¸õööõ˘öôö˝ëâ˚àââ¸àêÚàê˜àòâãéÙè˛áÓè˙ó˚ûùù¸û˝ùúúùùúÓùÔúîúúÙîé˝õ˛{Ã˘Ìˆc||F&˛|ö±©ö˚õöz{˚|5>t˝|>?5˚|{q–—©±±íö˙õúúõõú˙õúÔõúõõö˜õö¯õ˝ö˚õööõõ˙ö˛ëêààâˆàâÎàêàêêâåé‡èóóèè˚óñÙû˙ù¸úù˙úî¯úî˛úıîÉõ˝{îÃ˛Ï¸Ìıˆs||'&˛|멱ööõú˝õööqz{Ò|{zë–—±©±ë˛ö¸õúõõú¸õú˙õú·õö˝õ¸ö˛õöö˛õööõõ˛ö˝ë˚àâàâê¯àâëÌàêäçflèıóÚû˙ù˝úÓùÌúîú˙îúîôîãåå¨˝ÃÏÏ˝ÌˆÉ˛| mu||{ë±±ëöõõ˛úõõööë¿qyz¯{
  284. zzqâ—–—©©±ë˛ö˝õúõú˛õú˝õúúõõúú˛õú˜õúÎõö˛õ˛ö¸õööõööõ˛ö˝ë˙àâ˝àâ˘àâÔàêpêìç›è˙óè˝óÚû˘ùúÎùÛúî˚ú¯îçî˘ÃÏÏ˝Ìã|{||{˛|ô˛±ö˝õ˛ú˛õöë®–»¸©
  285. ±©±±——±±ëë±˝öˆõú˚õú˛õúõú˙õúÓõöˆõö˘õ˚öëíôëàë¯àêêâˆàê˙àëàâ˚àêëìé⁄è¸óèè˛óÔûÒù˚ú¸ùÍúî˝úùúîîõõå˚ÃÏ˛Ì§s˝{˝|{±ë©ööõõ¸ú˝õ¯ö˛™ë˝öõöö¸õú˚õúú¯õú˝õúúıõúÙõöˆõöö˙õööõõö˛ëâàâ⁄àêëå◊è˜ó˘ûùù¯û˙ùû˘ù˜úùùÏú˛ùîúúîúî{˝õ˛Ã¨ã˝{˙|ö˛ëöõõúõõúúÙõ˝ìíõúúõú˛õúÈõúúıõö˜õ˝ö¸õ¸öëâ˜àâ˚àâ˘àê˜àê˝àêíç¸èóˆèóÁè¯óü‰û˙ùıúùÔú
  286. ùùúúîúùúîúÑõú˙õ˚{m¶m{˛|ö±ëíö˛õúõúõõ˛ú˝õúõõú˘õúú‚õúú¯õúúıõöö¸õö˚õöö˝õö˛õööíëë˜àâıàââÒàHêìñ˝è˝ó˜èóóÊè˙óü¸ûñÁû¯ù˚úùÌúî˝ú˝ùúÉõúú{õúõ˙{ tÜÖ|{|{ö±ëíöö¸õúúõõúú˚õú¸õú˛õúúõõú˝õúõõúÏõúú¯õú˛õö˘õöö˛õö˙õ˛öõúúõõ˝öëâ˙àâààââ„àëìñè˘óŸè˘óñfiûıùúùúúùÈúùô˛ú˛õúçç˚{|{{|{ííöííöõõúú˛õúúËõú˛õúú˛õúúõõúú˝õúõõú¸õúú¸õú˚õöö˚õö˚õöõöõõöõõööõõúõ˛öôëë˛àâ¸àâààêàâÊàëîéˆóˆèóÊè˘óûü˝ûññ„ûùùûùùû˙ù¸úùÎú
  287. d°dONLNd%öSß‘(√qGETTING STARTED°dONLNd6™S∑v*WITH°dONLNd;∫S«¡* QUICKDRAW GX°dONLNdH‘S·≠*
  288. DEVELOPING°dONLNdT‰SÒ¡* QUICKDRAW GX°dONLNdbÙSï*PRINTING°dONLNdlS≠*
  289. EXTENSIONS°dONLNdwS+¡* QUICKDRAW GX°dONLNdÑ.S;Õ*FOR POSTSCRIPT°dONLNdì>SK¬* PROGRAMMERS°dONLNdüXSeû*MANAGING°dONLNd©hSu¨*    COMPONENT°dONLNd¥xSÖª* REGISTRATION°dONLNd¡íSüë*DYNAMIC°dONLNd ¢SØ≈*CUSTOMIZATION°dONLNdŸ≤SøÕ*OF COMPONENTS°dONLNdÁÃSŸò*FLOATING°dONLNd‹SÈû*WINDOWS:°dONLNd˙ÏS˘…*KEEPING AFLOAT°dONLNd    ¸S    ¡*IN THE WINDOW°dONLNd Sò*MANAGER°dONLNd &S3»*WORKING IN THE°dONLNd/6SC–*THIRD DIMENSION°dONLNd?PS]´* KON & BAL’S°dONLNdK`Sm±* PUZZLE PAGE°dONLNdWzSá¶*    MACINTOSH°dONLNdaäSóx*Q & A°dONLNdgßS¿h*' °dONLNdi¿SŒW*I°dONLNdj¿XŒä)ssue 15
  290. °dONLNdq¡äÕì)2   °dONLNdt¡ìÕ‡)    September 1993    (ÙqApple Computer, Inc.ˇ<˙◊#ˇ ˇˇˇˇ#◊ 
  291. d,     Helvetica.°dONLNdãñì˜+¥∞E D I T O R I A L  S T A F F, Palatino°dONLNdòñ°‘*Editor-in-Cheek  °dONLNd.ò‘°)>Caroline Rose°dONLNd<¶ñØÏ(Ã¥Technical Buckstopper  °dONLNdS¶ÏØ)V Dave Johnson°dONLNd`¥ñΩπ(⁄¥
  292. Our Boss  °dONLNdj¥πΩÂ)# Greg Joswiak°dONLNdw¬ñÀ∑(Ë¥
  293. His Boss  °dONLNdŬ∑ÀÒ)!Dennis Matthews°dONLNdë–ñŸÃ(ˆ¥Review Board  °dONLNdü–ß?)6"Pete (“Luke”) Alexander, Neil Day,°dONLNd√fi¢Á3(¿+C. K. Haun, Jim Reekes, Bryan K. (“Beaker”)°dONLNdÔÏ¢ıC*/Ressler, Larry Rosenstein, Andy Shebanow, Gregg°dONLNd˙¢ø*Williams°dONLNd(ñ÷(.¥Managing Editor  °dONLNd9÷)@Cynthia Jasper°dONLNdHñ„(<¥Contributing Editors  °dONLNd^„6)MLorraine Anderson, Philip°dONLNdx$¢-4(J¿+Borenstein, Robin Cowan, Toni Haskell, Judy°dONLNd§2¢;"*'Helfand, Rebecca Pepper, Rilla Reynolds°dONLNdÃ@ñI∂(f¥    Indexer  °dONLNd’@∂I‡) Ira Kleinberg°dONLNd„]ñe(Ç¥A R T  &  P R O D U C T I O N°dONLNdjñsÚ*Production/Art Director  °dONLNdjÚs)\ Diane Wilcox°dONLNd'xñÅÊ(û¥Technical Illustration  °dONLNd?xÊÅ4)PDave Olmos, John Ryan°dONLNdVÜñè¡(¨¥ Formatting  °dONLNdbÜ¡è˘)+Forbes Mill Press°dONLNdtîñù∑(∫¥
  294. Printing  °dONLNd~î∑ù)!Wolfer Printing Company, Inc.°dONLNdú¢ñ´’(»¥Film Preparation  °dONLNdÆ¢’´
  295. )?Aptos Post, Inc.°dONLNdø∞ñπ¬(÷¥ Production  °dONLNdÀ∞¬πˇ),PrePress Assembly°dONLNd›æñ« (‰¥Photography   °dONLNdÎæ «Ù)4 Sharon Beals°dONLNd¯Ãñ’‡(Ú¥On-Line Production °dONLNd Ç’)J Forbes Mill Press0§z6Ù
  296. •{5ÛòÄ~ñ}KKˆv4 ¨ˇ$í$í$íI$I$I$m∂m∂m∂íHíHíH∂⁄∂⁄∂⁄€l€l€lˇ˛ˇ˛ˇ˛    $íaa
  297. I$0√0√ m∂I$I$ íHaÜaÜ∂⁄yÁyÁ€líHíHˇ˛™™™™$í 1 1I$bbm∂$í$ííH0√0√∂⁄<Ù<Ù€lI%I%ˇ˛UUUU$íI$m∂íH∂⁄€lˇ˛ !$í$í$í"I$I$I$#m∂m∂m∂$íHíHíH%∂⁄∂⁄∂⁄&€l€l€l'ˇ˛ˇ˛ˇ˛()$í"‘a*I$E®0√+m∂h|I$,íHãQaÜ-∂⁄Æ%yÁ.€l–˘íH/ˇ˛ÛÕ™™01$í! 12I$B-b3m∂cC$í4íHÑY0√5∂⁄•o<Ù6€lΔÖI%7ˇ˛ÁúUU89$íX:I$>±;m∂^    <íH}a=∂⁄ú∫>€lº?ˇ˛€j@A$í$í$íBI$I$I$Cm∂m∂m∂DíHíHíHE∂⁄∂⁄∂⁄F€l€l€lGˇ˛ˇ˛ˇ˛HI›$íaJ7∫I$0√KSóm∂I$LouíHaÜMãR∂⁄yÁNß/€líHO√ ˇ˛™™PQ($í 1R&QI$bS9ym∂$íTL°íH0√U_ ∂⁄<ÙVrÚ€lI%Wܡ˛UUXY
  298. s$íZÁI$[Zm∂\)ŒíH]4A∂⁄^>µ€l_I(ˇ˛`a$í$í$íbI$I$I$cm∂m∂m∂díHíHíHe∂⁄∂⁄∂⁄f€l€l€lgˇ˛ˇ˛ˇ˛hia$íXj0√I$>±kI$m∂^    laÜíH}bmyÁ∂⁄ú∫níH€lºo™™ˇ˛€kpq 1$írbI$4>s$ím∂N\t0√íHh{u<Ù∂⁄ÇövI%€lú∏wUUˇ˛∂◊xy$íÂzI$) {m∂>Ø|íHSî}∂⁄hy~€l}^ˇ˛íCÄÅ$í$í$íÇI$I$I$Ém∂m∂m∂ÑíHíHíHÖ∂⁄∂⁄∂⁄Ü€l€l€lᡲˇ˛ˇ˛àâaY$íä0√>≤I$ãI$^ m∂åaÜ}díHçyÁúΩ∂⁄éíHº€lè™™€oˇ˛êë 1 $ííb4@I$ì$íN_m∂î0√híHï<ÙÇü∂⁄ñI%úø€lóUU∂flˇ˛òôÁ$íö)ÕI$õ>¥m∂úSõíHùhÇ∂⁄û}i€lüíOˇ˛†°$í$í$í¢I$I$I$£m∂m∂m∂§íHíHíH•∂⁄∂⁄∂⁄¶€l€l€lߡ˛ˇ˛ˇ˛®©‹a$í™7π0√I$´SñI$m∂¨osaÜíH≠ãOyÁ∂⁄Æß+íH€lØ√™™ˇ˛∞±' 1$í≤&ObI$≥9u$ím∂¥Lù0√íHµ_ƒ<Ù∂⁄∂rÎI%€l∑ÜUUˇ˛∏π
  299. r$í∫„I$ªUm∂º)«íHΩ49∂⁄æ>´€løIˇ˛¿¡$í$í$í¬I$I$I$√m∂m∂m∂ƒíHíHíH≈∂⁄∂⁄∂⁄Δ€l€l€l«ˇ˛ˇ˛ˇ˛»…$ía"’ I$0√E©Àm∂I$h~ÃíHaÜãSÕ∂⁄yÁÆ'Œ€líH–¸œˇ˛™™Û—–—$í 1!“I$bB/”m∂$ícF‘íH0√Ñ]’∂⁄<Ù•u÷€lI%Δå◊ˇ˛UUÁ§ÿŸ$íZ⁄I$>¥€m∂^‹íH}h›∂⁄ú¬fi€lºflˇ˛€v‡·$í$í$í‚I$I$I$„m∂m∂m∂‰íHíHíHÂ∂⁄∂⁄∂⁄Ê€l€l€lÁˇ˛ˇ˛ˇ˛ËÈ$íabÍI$0√0ƒÎm∂I$I&ÏíHaÜaàÌ∂⁄yÁyÍÓ€líHíKÔˇ˛™™™ÆÒ$í 1 2ÚI$bdÛm∂$í$ïÙíH0√0»ı∂⁄<Ù<˙ˆ€lI%I,˜ˇ˛UUU]¯˘$í˙I$˚m∂¸íH˝∂⁄
  300. ˛€l ˇˇ˛ñ}•{5ÛÍûùõööëôëëö÷ëâÔë˛ö¯õ¸ú˚ù˘ûÓûùùúõíöªëöö˙õ˙ú˚ù˘ûˆûù˛ûùúõõöíµëö˛õ¯ú˙ù˘ûÙûùúöØëöõõ˘ú˚ù˜û˚ûùûûùùúõö¨ëöõ˙ú˙ù˜û˚ûùúõ˛öºëíÔëöõ˝ú˘ùˆû˛ûùùúõö˛ëí®ëöõú¯ùıûùúõööëëô ëê€ëöõ˚ùÚûöô˝ëôô´ëí¯ëõ¸ùÚû˛ëíùëöúùÔû•ëâıëöúùûëíËëê¯ëêΩëöúûûëô˛ëô˛ëöùÚûùµëö‚ëöùÛûù—ëâêÁëô·ëöùÛûÚëö£ëöùÙûˆëí®ëí˘ëâöùûù¯ûùöëí˘ëöùˆûÀëâ«ëöù˜ûÿëöπëöù¯ûçëú˘û…ëâëê…ëàëù˙ûÆëííˆëíÛëàêëëàâëú˚û‚ëâ˛ëââflëí⁄ëàëàêâà`ëú¸û5Êëâëââன˛®©êê®˚ë©âˆëêê˘ëôfiëêëëààêê˛àêààëú˝ûBÍëâëâ©®»»––®®©©âääã˛å˝çıéççåãííëëê˙ëââ˛ëâ˜ëööÚë˛àê˙à©âõ˛û7Ìëâ©©»˛®âíäãåççé¯è˜éçç˛é˚èéçåãâ˚ëâ˝ëâ‰ë˝à˚ëâõûûGÒë˛â»∞ëäãåçé¯èéççååää˘ëôô˙ëíäîåé¸èçâÎëâ˛ëâ¸ëô˝ëôöëààëëâ¸ëöúû;Òëêàâãåé˜èççîíââêê¯ëíëëô¯ë˛ôíåé˛èéä˜ëâ˚ëí˘ëâÎëööú/ˆë®ëíååçé˘è    éååãäâëê»âÒëöíıëôëãç˛èã“ëíëëí%˜ëíãç˜èçãâà®®ààÍëâÚëç˛èä‘ëí˝ë1˘ëãç˜èçã©»»®ââ˝ëíÎëê˝ëí¯ëãçåäëâ¸ëöÌëêÎë&¸ëôíç¯èéãâ»–»®âÌëâêÈëêëíåâ€ëô˜ë(˛ëôôå¯èéãàË»»©◊ëâ¸ëìçèèãê›ëöí¯ëí4ëöëôç¯èㆯ˛»†˛âÙëíÏë¸â˛®äãéèèçãâà„ëí˝ëôˆëöC˛ëì˘èéâ¯Ë‡¿Ë‡»®®âàâëâëëââ˜ëââ˛ëâëë¸â˚ë®®ëâäåçèèéåâàÈëíÍë@ëëôå˘èç¯Ë‡‡¿Ë˛»˛®©©®®àˆâ©®©âàâàâ¸ëê˝ëííãåéé˝èå⯻®ââ—ëHôëëí¯è㮯Ë˝»®»»˚®†©˝®â⮆†»±±®àêëôôëôëëäåçéé˙èç⯯»®©‰ëö˙ëíÙë=˝ëìé˘èçãäââ®®˛–®¿˝»Ë˛»˚®–®©˝âäããååçéˆèéãí»Ë®©©fiëíÒë;˚ëíåé¯èééç˛åãÇää˛íììí˝ã˛åçé¯èéˆèåâôë©ââëíıëíÎëí1˙ëôëíì˛åççéÈèé˛ç˛åãäâäç¯èç仩ë©âÓëí‰ëí˚ë-ˆë˛ô˝ë˛íãã¯ìããä˝íâíö˛ëpêê∏êã˜èã¿±ëâ«ë,˚ëí˝ëôıë±ëôëôëô˚ëôëëô¸ëàêäç¯èéã–Ë®ƒë1ıëíëëöÛëö˙ë˛ö˝ëêëå˜èç©ÿ®à˙ëöÂëô˛ëö˘ëôıë,˘ëíöÓëôö˚ë˝ö¸ëé˜èä––»àëëíëëöëöí‰ëííÍë3¯ëöÙëí˚ëô¯ëíöëëãé¯èç⮩®®â˝ëííëö¸ëôö‰ëíÔë>ëëí˚ëí˚ëô˚ëöˆë˛öëëôëôç˜èì»ëëââ˝ëííâˆëôëëö˙ëíÒëíë8ıëííÎëí¸ëç˜è    ã»ëíëâëëô˝ëâëôëëí˝ëíëöëëö˙ëöëíÒë ÿëç˜è䯮˛ëâ¸ëí¸ëôíö¯ëö◊ë)ëëöÁëí¯ëíç¯èéä¯âëëââÙëöí¯ëí˜ëí‚ë%ëëöflëòäé¯èçâËâˆëôëöö˝ëíÌëí„ë+Áëíí˙ëêëå¯èéã†»¿âöıëö˛ëí˘ëô˛ëíô⁄ë2¯ëô˝ëôÓëêâé¯èçâË¿»âëö˘ëíıëööëëí˛ëí›ëí˛ë&ëí‚ëêâé¯èç†‡»»©âÎëííëëöí˝ëöô€ë9ëíÁëö˛ëêä˜èå®»»®©©˛ëô˚ëöëëô¸ëííëëí˛ëôöôí¸ëí›ë:ëí˜ëô˛ëã˜èã»ËË¿†®â˝ëô˚ëôëëô˝ëöö˝ëöö˝ëööíëëôí›ë6˚ëíÈëã˜èãˇ»©àâ¸ëöô¸ëöëëö¸ëööôëôö˝ëíöëíëëô‹ë,
  301. ëëíëëôíëëôô˛ëíÙëôôç˜èâË¿»©©˜ë˛íıëíŒë0¸ëöíôÓëôíç¯èéâ¯˛»©ıëíëëö˛ëöí˛ëöëëíëëê—ë3í˝ëíöííëôìé¯èçà¯Ë¿®ââ˙ëíëëô˝ëô˘ëíëöÓëí·ë4¯ëôô˘ëö¸ëôå˜èã–¿»®â˝ëíöôÙëííöö¸ëí˜ëöí‹ëâë8˘ëôÚëôå˜èä¯Ë‡»©±˝ëôëí¸ëööëôö¸ëíöô¸ëíˆëôˆëââÁë3Íëíç¯èçâ¯Ë»»©ââ¯ëôëëôëí¸ëôÛëÒâëâàââ˝à˛âëâëHÚëô¸ëôíé¯èå®»»®©â˛ëíí˚ëíÒë˛âëëâàâëëâ⮩®â©à⩲â©ââ˝à˛®†àà˝âÒëU˚ëöıëöôìé¯èã–Ë»®®àâ˝ëíöëíôëí˛ëö˙ë¸â    ©††®®©©»Ë†˛ë©®°©©à»˚©âன©®®˛†®®©©®˛âÛë[˛ëôëëí˘ëö˛ëôì˜èäË»»àâ˛ëíëö˛ëööíí˚ë˛â©â†®»»Ë»»®©©ë˚ö¯õô˛ë©»»˛® †à¿¿®»»®®©®ààıëPëëíëíÛëì˜è    ãË»¿®âëíí˛ëö¯ë˛â®˝»†àëëöö˛õúúÛù˛û˝ù
  302. úúõöö멻ˈ˝»¿»†àâëëà¯ëM˝ëôıëôî˜èã¯Ë»¿®ââëíëôëô˘ë ©®®âàëôöõõúú˛ùû˚ù˛úÚõúú˚ùúõëà†Ä˛»¿»®â˜ëâë]ààâ¸ëí˙ëíé¯èå†»»©®à˝ëôô¸ë˛©âëöõúú¸ùû˛ùúõõöö˙ëââ¸ëââëâ˛ëí˛ë˛öõú˛ùúôˆ®®˝»©âˆëOàà˛â˜ëíé¯è    ãË‡»†âëëí˛ëö˝ë©ëöõúú¯ù
  303. úõõöëâàனâÍëô˛ëâëö˝ùöˆ®˝»®©ââê˘ëH˝©˙â˛ëì˜è ä»»‡®ââëöíö˚ëöúú¯ùúõöëâàâÍëâí˚ëôëô˛ëâö˝ùö®®†˛»†®â˜ëF¯©â©©®ã˜èäË»¿†â¯ëöú˜ùúõôà»®˛âëëíöÚëöÙëôö˛ëôöú˝ùôˆ¿¿»†àâ˜ëRëëⲮ˝©®®ã¯èéâ˛»†â˝ëôëëööú˜ùõô»»…àâ˝ëôÚëôö˙ëôöëëí˙ë˛öõúõööê®†¿®†®à˜ëJùúúõöí벮âç¯èå௻»†àëí˚ëõ˜ùõöë©©â¸ëöö˚ëíÊëö˛ë    ©à»êöõô»˛®âˆëSú¸ùúõöãé¯èãÿ¿»»©˛ëôöëëöõ¯ùúô¯¯Ë‡»©âÙëöíëôöö¯ë˛âëëâ˘ë ⮆˻ëöúùùúô˛®àâˆë`ëëõú¸ùûó˘èã¯Ë‡˛»â˛ëööëëõ¯ùúà¯Ë‡˛»â±Ùëöö˛ëöô˝ëí˝ëâ˛ë˛â©â˛ë©»ëöõùûùúôàˆ®àà˝ëôí˙ëO˛ëööõú¸ùûñ˝èä¯Ë»‡˛»®ââ¸ëõ˘ùõ¿¿Ë˛‡»Äââë˙âËë†â©©âëëöõúùùûùúô˯†˛àâÙë^ëô˝ëçóû˚ùñéâËË»»‡˛»©®à˝ëú˘ùö¯Ë»»‡»»††®©©â©©à¸âëââë˘â©©â¸ëâ˝ëíõú˚ù úôË»»®ààâàâÙëb˛ëôíé˝èñ˚ùõöà˛»¿»¿˛»©˛âëö¯ùöëà¿Ë˛Ë¿˝»˛®†®®˝©®à©˛»…˛»®ââëëíö˛õúú˘ù    úöÄ»®®©ââ˛àêÙëU˛ëç¯èï˚ùúöâË¿¿˝»¿»©â©ëõú˘ùúúõõöëëâàà©®†®©©®˝©âàââëë˛öõõúúÒù úöÄ»†©âààëë˝àÙëBëíç¯èçÅëõ˚ùúöâË»»¿‡˛»®†©©ëíõõúÙùÛúˆùúúõöú˜ùõ©»»†àââ˝ë˛àÛëFìé¯èã®»öú˚ùúô©˛»ˡ¿»»ââ©âëëööõõ˝úÓù˛ú˛õ˛öëöë®ëú¯ùúö…˛»®âÈë6¯è    ç⯻©©ââëõ˙ùúí®˙»®©©âÙëıö˘ë˛â¸ëõ˜ùõë©ëââ©ëíÈë4˘èä¯»®â˚ëõ˙ù úö»…»Ë‡»±©®âÌëâëôú¯ùúöÌëêêˆë<˚èç⯻®©â˝ëö˛ëöú˙ù
  304. öâ»»‡¿»»©©˛ëíÛëí¸ëííˆëö˜ùúëâ‡ë@˝èéä®©ââ˚ëíëôëëõ˙ù    úö»»‡»»¿©˛ëôëôëê˝ëööÎëõ˜ùõà†˝ëí‰ë9˛èã®–®àâ˙ëí˚ëôöú˙ùú벻‡†©âëíÁëí˛ë©öú˜ùöËÚëöÓëFèåâ–»©©â˛ëíëëô˝ö˙ëõ˚ùûõ©†®®©âÙëôˆëíö˚ëö˜ùúê¿˚ëô¸ëí˛ëíÔë6Å»»®ââ˝ëö˛ë¸ö¸ëôëëöú˝ùõ˛ëââÂë˛íëëàõ˜ùõ¿ˈfië?®©â˙ëôôëëöö¸ëö˛ëöëëôõùùõ˛ëíÎëí˚ëôëëööëõ˜ùõ¿»¿»Ôëíë8â˜ëöëöëëôôö¯ëôôööëô˙ëí˝ëöÒëííëí˛ëöú˜ùö»»®©›ëBëëí˚ëíô˝ëííëööëôëööôëöôöëôöô˘ëö¸ëöëëöö˚ëí¯ëö˜ùúë¯Ë»»®â‹ëL˝ëíëë˝öíëöëëíëöö˝ë˝öíööëí˙ëíöí˝ëö˝ëô˚ëô¸ëííëö˜ùúꯇ˻ââ¯ëôˆëíÒëEëëíôëë˛öíööëëíëëööëëííëë˝öëööíëëö¸ëôëôëíöí¸ëööıëö˜ùúÄ‡»»©ŸëOííöôëëô˝öô˝ëööíëë˛öôôíöëëöıëôôëöö¸ëö˚ëí˛ëíëö˜ùúë‡Ë»®â¯ëí˘ëíÒëö˝ëCëëíëëô˝ëôëí˝ëöëíí˝öôëöô˛ëí˘ë    ôëôíëöôëëíÛëõ˜ùöê»»®àâÁëíÛëC¸ëôëôö¸ë öëëöôëíëôöíôô¸ëô˛ëö˝ëôëöí¸ëö˛ë¸í˝ëöú¯ùúë¯Ë»®ââ◊ëS ëëôëëííëöëôô˚ëöëëöôëëöö˛ëô¸ëíëëôëíööí˛ëô˚ëôëëí˛ëö˜ùúê¯Ë»»àâ¸ëôˆëíÛëíˆëB ëôôëöíëíöíööí¸ëôëöö˚ëö˚ëööíöö˚ëô˘ëôëâëíëö˜ùúê»»®©âÏëôÍëBëë˝öëööëëööíëëöôëëö˛ô¸ëôöí˛ë˝öıëöö˚ëâö˜ùõà¿»®ââëíÌëí˙ëBëëöíöôöëëíööëëôö˛ô˛ëöö˝ëíö˝ëöíëëíıëöö˚ëõ˜ùõË»»®©â‰ëíÒëíEô˛ö˛ëôöë˛ô˛öííöëëööˆëôıëíôëí˝ëôëöú¯ùúô¯Ë»»®ââ˛ëífiëââ˛ëàà†êGëëööôëööô˝ë¸öëöíöô˝ë˛ô
  305. ëôëôëëíëëööÚëöˆù믇‡©©âÏëô˘ëí¯ë˛âëââàà®êTëëôëë˛ö˝ôëíö˝ë˝öëíëëôëö¸ë
  306. öííëíëôöëíí˜ëú¯ùúô‡¿»©â˚ëôÚëí˚ëí˙ëâ©â⽩âàââ†ê;˝ë˛öôô˝öíëöôÒëö˙ëôíëëí˛ëí˝ëöú¯ùúà»¿»©â‹ë˚®˝©®©©†ê]öëë˛ö˛ë˝öëëöíëë˛ö˛ëööíö˝ëö˘ëöôëö˙ëöú¯ùõ†¿»»®ââÙëí˚ëâëëâ⩱ë˝ôëöëâaaàââiiââiâ©â©®êS
  307. ëëôôëëôöíëô˛ö¸ëô¸ëô˛ö˛ëííëô˚ëôô˘ëõ˜ùöË»»®®âÔë âë⩱±®àÄAIJ˝KLLM55˜U5UTL+Wëööô˛öí˚ö˙ë ííëëôëëôëôëí˚ëôôöëô˙ëõ˜ùôË»»®âÚëâë©©±®†aIJKTTU5¸65UTKKJjKK˚j˛KTUURí¸öë¸ö¯ëííô¯ëí˚ëôô˙ëíõ¯ù
  308. úë¯Ë»»†àëëíıë    ±±©aJJSTU5¸65UTLkj˛ëôô˛ëô˙ëôôëëqYíôëööë˛öôö¯ëôëöëö˛ëô˛ëô¸ëôëô˝ëô˛ëú¯ùúë¿»†©âıë±∞àAJST55¸65ULKJiâëô˜ëí˚ëô¸ëHô˛öë˝öôëö¯ëíÚëíëí˙ëöú¯ùõà‡¿®©ÙëâJST5˙6UTKjâë±±˛ëôÚëôëô˛ëöëWöôô˝öíöëëíëííôöëëöö¸ëô˘ëí˛ëöô˛ëíëõ˜ùöË»»®ââ˛ëí¸ëâJKLU˛6 55665TTJië±±Èëí¸ëô\í˛ë˛öëëô¸ëö˛ëö¸ëöëëö¸ëöíí˛ëö˛íëõ˜ùô¯Ë»»©â˜ëKU566˝5
  309. 66UJ@»∞∞®©â˛ëö˙ëöôıëö˛ëöëöPööëíöö˘ëíöö˜ëíööëëö˛ëíëíí˝ëõ˜ùô¯‡»»©©˙ëôëJU6˚5
  310. 66USaÿ»©©ââ˝ëôöôÌëí¸ëöD˛öíí˘ëöôöëöÙëíí˜ëõ¯ùúë¯Ë»»©©â˙ëkU66¸5    66TJÄ–»©ââÊëí˛ëööí˛ö>˛öëëö¸ëôÙë¸âˆëíú¯ùúà¯Ë»»©˘ëôL66˚56UJ†–»»©â‰ëí˛ëöíö˛ëNöëëööôÛë˝â©©ââà˝©àâë±âë©ëú¯ùú¿Ë»©â¯ëL6˚5
  311. 66TIÿ»¿»®ââÙëööëëôıëí˝ëö˛ëO˛ëööô˙ë˝â˝©˛®»®©˛®¸»©©»–öú¯ùöà‡»»©¯ëT6˙5 4I®»‡»‡»®©âëâ¸ëâ˘ëíí˚ëâıëíëb˝ëöí˝ë®∞ë©ââiqqIA!Iqq↲®∞∞ÿ–»»®õ¯ùúô¯Ë‡»»®â˘ër6˚564»ÿ»˛¿»‡»®©®©©â˛ëâëâëëââ˜ëí˘ëôëôöëë`¯ëâiJSLT5˛U˝5˛U 5TLLKJJIi¿ôúû˘ù
  312. õê¯Ë»¿»»©ââ˘ëU6˚5UI∞––¸»©©»†®©®©©â©àà⩸âà˝â˝ë˛ô    ëâjkksLMU_˚ëiKTU5˝6V˛5UUı65UTMuu}˚ù ö¿‡Ë‡»¿†®®˛©˛âëëJU6˙5 LJi®∞∞–»»…»†ˆ®©©®®©®®©êëâëâjJKLL˛5˝65i˝ëKU5˛65TKJJriijrrJksLU5˝6˝56˝5UMmuùö¯ÿ–˛»Ë»¿˚»©à®©âëëKU˛6˛5    66UTKJJq©©¸®¸∞©®®∞˛®    ëqqJKKLU55˝6˘5dôëjU6655SJIë±ë±˙ë˛ôërjKLU5Uˆ5UTSRIH ¿˛–˛»‡¸»®®©©±âJKT˝5¸6VU5TLL,+¸SKK+˝T 5UUV6V655UUL˛KU˙5m L5665SI†®∞±â¸ëöíööí˛ëöë˛ôëöù}uMM˘5˛6˛5TSJI@»––˛»¿˛»‡»»®∞®âÅiiJJKKLT45UU55U5665˚U5UTL˛K    JrrjiíëëjK¯5b˛6KA––®©˘ëööëöö˛ëôëëâëõ˚ù}uuM566˙5˛6 5UTKJI@»ÿ–»»Ë˛»‡˝»
  313. ®±∞±±ëëââëë˛qiaaiqq¯ë˛ô¸ë±K56˙56T]6UJ∞–»†âë˛í˛ëööëôô˘ëöú˘ù    ûúëIKTU566˘5˛6    5UTSJI»ÿ–˛»‡˚»®»˛©®©©ë멈ëíëëöö˝ëôíL˘565K†[TI–»»©©˝ëöôöôö˛ëöëô¸ëõ¯ùúö†–∞ââjKU5566˘5˛6 55TTSJI@»ÿ––˛»¿»¿˛»¸®˛©¸âıëôrM6˙565J∞¿\
  314. ®–¿»®©âööëë¸öëô˛íö˛ëöú¯ùõ௻©®©˛ëôëëjKU5˛6¯5˛6    55UTSRI@†®˛ÿ˛–˘»®®˙©¸â˛ëJ56˙56,–©Åa    »¿»©ââëëôë˝ö¸ëööëëöú¯ùõôË®©©¯ëöörKKLU5˛6¯5˝65UTTS3RJI@@»∞ÿÿ–»»˝» ¿¿»©©®†©©±iT6˙565+¡®†®Åd‡¿»©â˛ë˛öíöôëëö˝ëíõ¯ùúô–©®ââ˛ëôôëëíëëööëëôôëjkLUU˛6ˆ5˚655TTSSJJI `‡®∞ÿÿ˝–˛»ÿIU6˙5    6UI∞â©©ëëZ‡»©âëëööëëööëôöíí˛ëõ¯ùúö»»ââÙëöëëííëôëôôëëjKTU˛6Ú5¸6˛5UTTS3RJ*Iq@ÄJU6˙56UÅ∏˛©ââÅW »¿âëëöôëëôöí˝ëâ©öú¯ù õ©—©†®âëíöíëí¸ëí¸ëííö˝ë˝ôëërKLU5˛6Ó5˝6VV55U55UU˜5T++L˛,55J¿®âëíëëí˚ëââöú¯ùõë»»©©ââ˝ëí˚ëôíí˝ëöíôëëöëëíëíëëôôëërkKLUU55˝6fl5˘65U»©¸ëíëâëâ©âöú¯ùõë–»©ââ˝ëö˛ëíö˝ëö˙ëííöô¸ëíôôíöëëö˛ôëërjKLLTU55UU55˙6Ò5˙6¸5Ug»©¸ëâ©»©öõú˘ùõö©»©©â˝ëöö˛ëííëöô˚ëöëëô˚ëô˝ëööëëöö˝ëôô˛öôô˛ë íírjjKKLLTLLM˝U¯5 6U4TTK3KJjkj˛íd»©˛â©©†ëõú˘ùúõë»»â˘ëööëëô˛ëô˝ëíëôëëöö¸ëôöˆëíëëôííëöëëööëëöëööôôöôëëööôëíL˘5 65J–†∞±∞±ëöô˝ö^»…±†ëëöõ˘ùúõö©©˛â˙ëöëööëëôëô¯ëíö˘ë˝öëöíôö˛ëöô˚ë    öëëöëëöëëí˛ë˛öëëöíU6˙565Iÿ»à˛ëíí¸öíaëöõú¯ùúõö⮩˜ëöëëíëëíí˝ëííôëôôíëëöôëëíëô˛ë˛öíöëôöíëí˙ë˛öëíöëô˚ëöëëöôíU6˙5    6U)–»Ëëööô˚öëôq˛ùû¸ùúõöë뱩¸ëö˛ëöôëë˛öëëöëöëëôöëöëöô˝ëôí˝ëô˛ëöíëöííööí˝öëíôëöíëööëööëíööíëö˛ëôjU6˙5 6Th–Ë¿®âëííëô¸öëb˛ú˛õööëââ˚ëí˙ëô˛öíëööë˙öë˛íëëôô¯ëô˝ëôöíëëöôôööôëëööëôíöëööíëö˚ëôL6˘56S¿–»»®âëëíëëô˝öôëa˛ëâ˚ëíô¸ë öëëöëëöôëöíö¸ëööë˝öëë˝öô˛ö˘ëöíëëöí¸ëööôëëöíööëëôëëô˘ëöL6˙565J–»»©©â˚ëööëööôôd¯ëöíëëííëööëëööíë˛ôööëöëíöö˛ëö˝ë˛öíë˛öíëí¸ëíöëëíıëíöô¸ëôôö˛íëëôK6˙565RÿË¿»©±˛ëôôöíööë˝öiíöö¯ëöíöô˝ë íëíöôôöëëíööë˛ö ôöíëëöôöíëííë˛öëíëííôö¸ëö˝ëöô¸ëö˛ëöëíëëööíöëööL6˙56UJ–˛»©â˝ë˚ö˛ôöëjíí˛ëí¯ëí˝ëöëööëëöííöëôëöíôíëëöôöôëëöö˝ëô˛ë˝öíëëíö˛ëöôô¸öëë˛ö íëíôëííöëôëL6˙565I–»»®©¸ëöëëööí˚ödëô˛ëöëí˙ëööëë˝öôëëôöí˛ë¸öëöôííëëôôöëëôööëíö¯ëí˝ë˝öôëëí˚öô˝öôíL6˙56UI–¿»®©â˝ëôööë˝öôëöôëjëëíëëôëô¸ëöëë˛öëôööëôëôô˘öôööëôô˛öëíëëööôöö˝ëö˝ë˝öëíöôööë˛öíööëëööëëôörU6˙56T@–»»†â˛ë˛öôööëë˘ökë˝ö˛ë˝ôööôë˛öôë˜ö ôííôöëëöëôööô¸ëööëëôëôëíööíëô˛öôôöëëööë˛öëëöëô¸örU6˙56S®–…»©â˝ëôíôôööôööëôööôöökí˛öô˛ëô˝öëëôô˜öôöëëíöëë˛ö ôôëëöôëôôííëë˛ô˛ëôöôë˛öë¸öôëíëööëëô˙ökU6˚56VR–»…©©ëëöôëíôööô¸öëô˛öôököëööë˝ô˛ö    ëôëôööëöíö˛ë
  315. ôëëöëëöôöëë˘öëöö˝ëôööô˝öôëöô˛ë˝ö˚ë ôëëöëëööíL66˚565I–Ë»»©˛ëöôô˛öôëööëëööô¸öX    ëëôëíëëíëí˛ö¸íöö˝ëööô˛íööëˆö˝ëô˛ëöôë˛öí˝ëöëëôöÙëöëöL˘5UUi∞˛â˝ë¸öôô˝öëô˚öôô
  316. d°dONLNd "\+›(Hz"Lindsay Marshall of Rucker Huggins°dONLNdC.\7˛* -illustrated several QuickDraw GX features for°dONLNdq:\C®* this cover. The three °dONLNdá:®C¨)Lg°dONLNdà:¨C)’s are from the “GX°dONLNdõ:CÛ)D-°dONLNdúF\OÙ(lz(ready” typeface, Columbine, developed by°dONLNd≈R\[ä* David Siegel.°dONLNd”v\’*$%develop, The Apple Technical Journal,°dONLNd¯v’˝)y  a quarterly°dONLNdÇ\ã¯(®z)publication of Apple Computer’s Developer°dONLNd/é\óÌ* )Press group, is published in March, June,°dONLNdYö\£º* September, and December.°dONLNdræ\«l*$The °dONLNdvæl«®)develop Bookmark°dONLNdÜæ®«“)<  CD (or the °dONLNdíæ“«Ú)*    Developer°dONLNdú \”{(z    CD Series°dONLNd• {”¯)% disc, Reference Library edition) for°dONLNdÀ÷\flÒ(¸z+September 1993 or later contains this issue°dONLNd˜‚\Îß* and all back issues of °dONLNd‚ßÎø)Kdevelop°dONLNd‚øÎı) along with the°dONLNd%Ó\˜⁄(z%code that the articles describe. The °dONLNdJÓ⁄˜Ú)~develop°dONLNdR˙\€( z%issues and code are also available on°dONLNdx\‚* "AppleLink and via anonymous ftp on°dONLNdõ\ê* ftp.apple.com. m9m/ˇå◊#ˇ ˇˇˇˇ#◊ 
  317. d,     Helvetica.°dONLNd&)+<AE°dONLNd,&8)D°dONLNd;&?)I°dONLNdB&J)T°dONLNdM&Z) O°dONLNd]&i)R°dONLNdl&p)I°dONLNds&~)A°dONLNdÅ&ä)L, Palatino
  318. °dONLNd
  319. ü%ˆ)Another award for °dONLNdˆ%)Wdevelop°dONLNd#%¬)%&! And changes made at your request.       °dONLNdI¬%»)ß2°dONLNdL21B:(]OL°dONLNdM2=BH) E°dONLNdN2KBS)T°dONLNdO2VB^) T°dONLNdP2aBl) E°dONLNdQ2oB{)R°dONLNdR2~Bä)S
  320. °dONLNdT5üA≥)!@Letters from you, plus more from us on asynchronous routines.       °dONLNdî6≥Aπ(]—3°dONLNdóN&^1(yDA°dONLNdòN4^@)R°dONLNdôNC^K)T°dONLNdöNN^R) I°dONLNdõNU^a)C°dONLNdúNd^m)L°dONLNdùNp^{) E°dONLNdûN~^ä)S
  321. °dONLNd†Qü]a)!#Getting Started With QuickDraw GX      °dONLNd√Ra]Á)¬by Pete (“Luke”) Alexander
  322. °dONLNd·^üjÊ(ÜΩFA brief introduction to QuickDraw GX, and a simple GX-aware sample.       °dONLNd'_ÊjÏ(Ü6
  323. °dONLNd*wúÉú(ü∫-Developing QuickDraw GX Printing Extensions      °dONLNdWxúÉÍ(ü∫by Sam Weiss   
  324. °dONLNdfwÍÉ˙)NAll°dONLNdjÑúê•(¨∫:about these nifty new add-ons to QuickDraw GX printing.       °dONLNd§Ö•ê±(¨√34
  325. °dONLNd®ùú©Ö(≈∫)QuickDraw GX for PostScript Programmers      °dONLNd—ûÖ©fi)Èby Daniel Lipton   
  326. °dONLNd‰ùfi©)YThe two°dONLNdÏ™ú∂Á(“∫Jgraphics models are compared, along with useful code snippets for each.       °dONLNd6´Á∂Û(“51
  327. °dONLNd:√úœ](Î∫!Managing Component Registration      °dONLNd[ƒ]œ∫)¡by Gary Woodcock
  328. °dONLNdk√∫œ√)]   °dONLNdn√√œ)    For those cases°dONLNd~–ú‹ˇ(¯∫Lwhere you may need to manage the component registration process, here’s how.    °dONLNdÕfiúÈ®*74
  329. °dONLNd—ˆúŸ*8Floating Windows: Keeping Afloat in the Window Manager      °dONLNd    ˜ŸÂ(˜by°dONLNdú≈(+∫Dean Yu
  330. °dONLNd≈Œ))   °dONLNdŒ)    AA way to implement floating windows without patching traps, and a°dONLNdYúf(8∫/library you can use in your own application.       °dONLNdàfr) 89
  331. °dONLNdå)ú5K(Q∫ Working in the Third Dimension      °dONLNd¨*K5
  332. )Ø"by Jamie Osborne and Deanna Thomas
  333. °dONLNd—6úB(^∫TThis article shows off a nice 3-D interface and presents a set of MacApp objects you°dONLNd&CúOX*-can use to create your own such interface.       °dONLNdSDXOj)º103°dONLNdX\'l3(áEC°dONLNdY\6lC)O°dONLNdZ\FlO)L°dONLNd[\Rl]) U°dONLNd\\`lm)M°dONLNd]\pl{)N°dONLNd^\~lä)S
  334. °dONLNd`_ükπ)!1The Veteran Neophyte: Through the Looking Glass      °dONLNdë`πk(á◊by Dave Johnson
  335. °dONLNd£lüx·(îΩFDave explores the mathematics of symmetry and finds some surprises.       °dONLNdÈm·xÌ(îˇ71
  336. °dONLNdÌÖúë(≠∫=Somewhere in QuickTime: Dynamic Customization of Components      °dONLNd*Üë(≠#by°dONLNd-ìúûÂ(∫∫Bill Guschwan 
  337. °dONLNd;íÂûÎ)I  °dONLNd=íÎû)@A sample derived media handler that “speaks” the text track in a°dONLNd~üú´¡(«∫    movie.       °dONLNdᆡ´Õ)%84
  338. °dONLNdã∏úƒ(‡∫View From the Ledge      °dONLNd†πƒZ)yby Tao Jones 
  339. °dONLNd≠∏Zƒ`)E  °dONLNdØ∏`ƒ))An office survival guide for the socially°dONLNdŸ≈ú—(Ì∫and politically inept.       °dONLNdÚΔ—)i115
  340. °dONLNd˜fiúÍë(∫+KON & BAL’s Puzzle Page: I’m Here to Serve     °dONLNd"flëÍ)ı by Konstantin Othmer°dONLNd8Ïú˜Ú(∫and Bruce Leak   
  341. °dONLNdIÎÚ˜)V@Try your skill (or is it luck?) on yet another puzzle from those°dONLNdä¯úç( ∫2masters of Macintosh machinations, KON and BAL.       °dONLNdº˘çü)Ò132°dONLNd¡S!`(<qQ°dONLNd¬c!g) °dONLNd√j!u)&°dONLNdƒx!|) °dONLNd≈!ä)A
  342. °dONLNd«ü ) Macintosh Q & A   °dONLNdŸ ˝)b5Apple’s Developer Support Center answers your product°dONLNd!ü-(IΩdevelopment questions.       °dONLNd("- )o117°dONLNd-:MJQ(ekI°dONLNd.:TJ_)N°dONLNd/:bJn)D°dONLNd0:qJ|)E°dONLNd1:Jä)X    °dONLNd3>üI±) 137 s4s, New York (v +
  343. 1(äª0© 1993 Apple Computer, Inc. All rights reserved.*kApple, the Apple logo, APDA, AppleLink, AppleShare, AppleTalk, ImageWriter, LaserWriter, LocalTalk, MacApp,*    hMacintosh, MPW, and MultiFinder are trademarks of Apple Computer, Inc., registered in the U.S. and other*    hcountries. AppleScript, ColorSync, develop, Finder, KanjiTalk, Macintosh Quadra, MoviePlayer, QuickDraw,*    dQuickTime, Sound Manager, System 7, TrueType, and WorldScript are trademarks of Apple Computer, Inc.*    lHyperCard, HyperTalk, and MacDraw are registered trademarks of Claris Corporation. PostScript is a trademark*    jof Adobe Systems Incorporated, which may be registered in certain jurisdictions. Helvetica is a registered*    itrademark of Linotype Company. UNIX is a registered trademark of UNIX System Laboratories, Inc. All other*    7trademarks are the property of their respective owners.(ˆ⁄
  344. CONTENTS  )*September 1993ˇY◊#ˇ ˇˇˇˇ#◊ 
  345. d0û10´
  346. ü2/™òÄ~ñ}KKˆv3◊ˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇˇˇˇˇÃÃˇˇÃÃÃÃˇˇôôÃÃˇˇ    ffÃÃˇˇ
  347. 33ÃÃˇˇ ÃÃˇˇ ˇˇôôˇˇÃÃôôˇˇôôôôˇˇffôôˇˇ33ôôˇˇôôˇˇˇˇffˇˇÃÃffˇˇôôffˇˇffffˇˇ33ffˇˇffˇˇˇˇ33ˇˇÃÃ33ˇˇôô33ˇˇff33ˇˇ3333ˇˇ33ˇˇˇˇˇˇÃÃˇˇ ôôˇˇ!ffˇˇ"33ˇˇ#ˇˇ$ˇˇˇˇÃÃ%ÃÃˇˇÃÃ&ôôˇˇÃÃ'ffˇˇÃÃ(33ˇˇÃÃ)ˇˇÃÃ*ˇˇÃÃÃÃ+ÃÃÃÃÃÃ,ôôÃÃÃÃ-ffÃÃÃÃ.33ÃÃÃÃ/ÃÃÃÃ0ˇˇôôÃÃ1ÃÃôôÃÃ2ôôôôÃÃ3ffôôÃÃ433ôôÃÃ5ôôÃÃ6ˇˇffÃÃ7ÃÃffÃÃ8ôôffÃÃ9ffffÃÃ:33ffÃÃ;ffÃÃ<ˇˇ33ÃÃ=ÃÃ33ÃÃ>ôô33ÃÃ?ff33ÃÃ@3333ÃÃA33ÃÃBˇˇÃÃCÃÃÃÃDôôÃÃEffÃÃF33ÃÃGÃÃHˇˇˇˇôôIÃÃˇˇôôJôôˇˇôôKffˇˇôôL33ˇˇôôMˇˇôôNˇˇÃÃôôOÃÃÃÃôôPôôÃÃôôQffÃÃôôR33ÃÃôôSÃÃôôTˇˇôôôôUÃÃôôôôVôôôôôôWffôôôôX33ôôôôYôôôôZˇˇffôô[ÃÃffôô\ôôffôô]ffffôô^33ffôô_ffôô`ˇˇ33ôôaÃÃ33ôôbôô33ôôcff33ôôd3333ôôe33ôôfˇˇôôgÃÃôôhôôôôiffôôj33ôôkôôlˇˇˇˇffmÃÃˇˇffnôôˇˇffoffˇˇffp33ˇˇffqˇˇffrˇˇÃÃffsÃÃÃÃfftôôÃÃffuffÃÃffv33ÃÃffwÃÃffxˇˇôôffyÃÃôôffzôôôôff{ffôôff|33ôôff}ôôff~ˇˇffffÃÃffffÄôôffffÅffffffÇ33ffffÉffffÑˇˇ33ffÖÃÃ33ffÜôô33ffáff33ffà3333ffâ33ff䡡ffãÃÃffåôôffçffffé33ffèffêˇˇˇˇ33ëÃÃˇˇ33íôôˇˇ33ìffˇˇ33î33ˇˇ33ïˇˇ33ñˇˇÃÃ33óÃÃÃÃ33òôôÃÃ33ôffÃÃ33ö33ÃÃ33õÃÃ33úˇˇôô33ùÃÃôô33ûôôôô33üffôô33†33ôô33°ôô33¢ˇˇff33£ÃÃff33§ôôff33•ffff33¶33ff33ßff33®ˇˇ3333©ÃÃ3333™ôô3333´ff3333¨333333≠3333Æˇˇ33ØÃÃ33∞ôô33±ff33≤3333≥33¥ˇˇˇˇµÃÃˇˇ∂ôôˇˇ∑ffˇˇ∏33ˇˇπˇˇ∫ˇˇÃêÃÃÃúôôÃÃΩffÃÃæ33ÃÃøÃÿˇˇôô¡ÃÃôô¬ôôôô√ffôôƒ33ôô≈ôôΔˇˇff«ÃÃff»ôôff…ffff 33ffÀffÃˇˇ33ÕÃÃ33Œôô33œff33–3333—33“ˇˇ”ÃÑôô’ff÷33◊ñ}ü2/™~˛+)+++++++++++++++++++++˛+++++++++++++++˛+++˛+++˛+++˛+++˛+˛+˛+˛VL+++++++++++++˛+˛+˛+˙+˛+˛+˛+˛+˛+˛+Ú+€++˛+˛+A+++++++++++++++++++++++++++++++++˛+˛+˛+˛+˛+˛+˛+˛+˛+˛+˛+˛+V4++++++++++˛+ˆ+¸++˙+˙+++≈+w˛+˛+˛+˛+++++++++++++˜+VVÅVÅVÅVÅVV+++++++++++˛+++˛+˛+˛+++˛+˛+˛    ++++V?+++++++++++˛+˛+++˛+++˘VÅVÅV˙ÅVV+++«+{+˛+˛+++++++++++++˝+VVÅV˝Å¨Å¨¸Å¨˛Å ¨Å¨ÅÅV++++˛+++++˛+˛+˛+˛+˛+˛+˛+˛+˛+˛+VG++++˛ +++++++˛+˛+˛++˝VÅV˝Å¨Å¨˛Å˛¨ ŨŨŨÅÅVV++…+|˛+˛+¸++++++++++++VV˛ÅVÅōōިŨŨ¨◊¨◊˛¨◊¨¨Å¨ÅV++++++++++˛+˛+˛+++++˛+˛+++˛++VB0+++++++++++++++++VVÅVÅVÅŨŨŨŨÅÙ¨ÅÅVÅVV++À+y+++˛++++++++++˝+V˝Å
  348. VÅŨ¨◊¨¨Å¨Å¸¨Ũ¨◊¨◊¨◊˝¨˛ÅV++++++++˛+˛+˛+++˛+˛+˛+˛+˛+˛+VG+++++++++++++++V˛ÅVÅVÅōިōōިŨň¨VÅVV+Œ++o˛+˛+ ++++++˛++˛+VÅŨ˛Å¨Å˚¨◊Ú¨◊˛¨◊¨¨VÅÅV++++++˛+++˛+˛+++˛+˛+++˛    ++++VG"+++++++++++++++VVÅōިŨŸ¨Å˛¨Å¯¨ōި˛Å¨ÅÅ++œ+r+++++++++++++++VV˙¨ŨŨŨ¨◊¨¨Å¨Å¨Å¨¨◊¸¨ÅŸ¨Å˝¨Å++˛+˛+˛+˛+˛+˛+++˛+˛+˙+˛+VC++++++++˛
  349. +++++VVÅ˘¨ŨŸ¨˛Å¨Å¸¨ŨÅŞVÅÅ˘¨Å++—+v˛+˛+++++++++++VV˝¨◊¨◊˝¨Å˝¨◊¨¨˛Å˝¨ ◊¨¨ÅÅVV+V+ÅÅ˚¨◊¨Å++˛+++˛ +++++++˛+++˛+++˛+˛VI+++++++++++++V+Åů¨Å˛¨Å˛¨˛Å¨Å¨Å¨Å¨ÅV˙+ÅÅ˙¨ÅV+Í+Î+s+˛+++++++++++V+V˛Å¨¨◊¨◊˚¨ōިÅÅV˚ÅV˘+Vި◊˝¨V++˛+˛+˛+˛ +++++++˛+˛+˛+˛+VL ++++++˛++++˛+VÅVÅ˚¨Ũ¸Å¨Å¨ÅÅ˚V +V++++++VÅ˙¨ÅÅ++Ï+È+t++˛+ ++++++˝+V+ÅŨŨ¨◊¨¨Å¨ÅÅVÅ˚¨ÅÅV++V˚+˚+ÅÅ˝¨(◊¨¨ÅÅ+++++++++++++++++++˛    ++++VT++++++++++˝+VŨŨŸ¨ÅÅVÅōިŨÅÅ˝+++++˛+VÅÅ˙¨ÅVÓ+˛+Î+v+++˛++++++++V+VÅ˚¨◊¨¨Å¨¸Å˝¨◊¨¨ÅÅ++++++˝+VVÅÅ˝¨◊¨¨ÅV+++˛+˛+++++++++++˛+˛+˛+VP˛+++˛+++˛+++VVÅÅ˝¨◊¨¨Å¨¸Å˛¨ Ũ¨◊¨¨ÅV+++˛ +++++VVÅŸ¨ÅÅV+÷++p++˛+˛+˛+˚+VV¨Å¯¨ōōި˛Å    ¨¨◊¨¨ÅV++˛+˚+V+VŨ¨◊¸¨ÅV+++˛%++++++++++++++++++V]+++++++++˝+˝Å¸¨ŨŨŨ˛Å¨ÅÅ+Vި ÅÅ++++++˚+VŸ¨ŨÅV++ˆ+˛+˛+˛+Ô+o+++˛+˛+˘+˝Å˝¨ ◊¨¨Å¨Å¨Å¨Å¨ÅŞV¸¨
  350. ÅV+++++˚+V+Ũ◊˝¨ŨÅ++˛+˛+++++++++++++˛+++VN++++++++˛++VÅVÅŸ¨˘Å˛VÅVÅŨ˛ÅV˛++++++++VV¨¨˝Å¨¨Å++◊+j ++++++˜+˝Å˝¨
  351. ◊ÅÅVÅVÅV¨Å¨˛Å˛¨˝Å+++++˘+VVÅŨ¸Å"¨ÅV++++++++++++++++˛    ++++Vh+++++++˚+VVÅŨŸ¨ÅŸVÅŨŨŨÅVVÅV+++++++++˛ÅVŨ¨ÅÅV˛ÅV+ˆ+˛+˛+++˛+ˆ++t    +++++˛+˝+V+VVÅŨŸ¨ÅÅ˚V+VVÅŨ˝Å
  352. VV++++˚+ÅÅV+VV˛¨˛Å ¨ÅV++++++˛+++++++++˛+++˛+V]˛+++++++++VVÅōōōިŸV"+V+VVÅŨŨÅV++++++++ÅVV+VVÅŞ¨ŨŨÅV+++Ì+i++++˜+    VŨŨ¨◊¨¨Å˝¨Å¸VÅVÅVÅŞ¨ÅÅ++++˘+˛ÅVÅVÅV¯¨,ÅV+++++++++++++++++++++Vr ++++++˝+VV¸¨Ũ˛Å˛¨ÅŞVŞV    ÅVÅŨÅÅV+˙++++V˛Å¨ÅVVÅVÅ˝¨ŨÅÅVV++˙+˛+˛+++˛+˛+˛+˛++n+++ı+Å˚¨ŨŨ¨◊¨¨ÅÅVÅVÅVÅōިVV+˝VÅVV˝+ +VÅVÅVV+V+VV¸¨˛Å¨V++++˛+++++++++++++++VX ++++++˝+VV¸¨˛Å¨Å¨¨◊¨¨¸V ÅŨŨ¨ÅVV+V+¸V˝+˛V+V+V˚+Ÿ¨ŨÅV+++˛+˛+ı+m++Û+ÅÅ◊¨◊¨¨¸Å ¨¨◊¨¨VÅVÅVÅŞ¨ÅÅVV˛+VVÅVV+++++V+V+V¸+V¨◊˚¨V˛+&++++++++++++++++++Vm ++++++˝+VVÅ˝¨    Å¨VÅVÅŨŨ˛Å˝VÅŨÅÅVV˛+¸V++++˙++++Ũ¨Å˛¨ÅV++˛+˛+˙+˛+++++˛+˚+i+++˜+VVÅŨ¨◊˝¨ÅÅV˝Å˛¨ÅŞV˛Å
  353. VV++V¨¨Å+VV¸+˙+˝+VÅ˙¨*V++++++++++++++++++++Vi++++++++VV˝Å¨¨◊¨¨Å¨˛VÅVÅŨŨÅÅVÅVÅVV++VÅVV˛+    V+++++˛+++++ÅŸ¨ÅV+++˛+++˛+˘+h˛+ˆ+VÅÅ˝¨    ◊¨◊¨¨Å¨ÅÅV˝Å˛¨Ũ˝ÅVV+VV˝+V˘+++V˙+    VV¨¨◊¨◊¨¨V˛+++++++++++++˛+
  354. ++++Vm
  355. +++++˝+VV¨Å¯¨ÅÅVÅŨŨ˛Å¨Å¨˛ÅV˝+¸++˛++++V++˝+Å˚¨ÅV++++˛+˙+˛ +++++++˛++u+˛+˛+˝+VVÅ˘¨Å˛¨    ÅÅVÅŨÅÅV¨˛Å¨ÅÅVV++˛+++˝+V˛+˛V+V˛+VŨ¨◊˝¨VV˝+$++++++++++++++++++j++++++++Åů¨
  356. ŨŨÅÅVÅVÅV˛ÅV˛ÅVV+˛+˛++¸+++¸V+VVÅŸ¨ÅÅ˝+++ˆ+˛+++++˛+˛++h˛+˜+˝Å˝¨◊¨◊¨¨Å˛¨¸Å¨ÅÅV˛Å VÅV+++++˝+V+V¸+VVÅVÅVÅÅ˝¨◊¨¨ÅÅ++˛+++++++++˙+
  357. ++++Vr+++˛+++˝VÅÅ˙¨˛Å¨˝ÅV˛ÅV˛Å+˛V++˛++˝+V++++˛VÅVÅVÅōިŨÅV˝+++˙+++++++++˛++q¸+˛+˝+˝V˝¨◊¨◊¨¨Å¨Å˛¨V˝Å¨Å¨˛VÅ˝+    +++++V˛+V¸+VVÅVÅVÅV¸¨Å˛¨VV+V+++++++++++˛++++˛++n++++˛+++˛VŨÅ˙¨ŨŨ˙ŨVÅVÅVV+++++˝+V+˛V+V+˝VÅ+VVÅŞ¨Å˛¨    ÅÅVV++++¯+˛ +++++++˝+\Û+VVÅŨ¨◊˛¨◊˛¨◊˚¨˛Å¨Å¨Å˛¨VV+V˙+V˛+˝V˚ŨVV+VV˙¨ÅÅVV˝+++++++++˙+
  358. ++++Vo++++˛+¸+VÅÅ˙¨Å˛¨ŨŨ˛Å¨Å¨Å˛¨ÅV¯+V++˝+ VVÅŨŨÅV+V+Å˚¨ ŨÅÅ+++++˛+˛+˛+++˛+++˛+++YÛ+V+VV¨¨◊¨◊Ú¨◊¸¨Å˝V+V˛+˛V¸+V+VVÅV˛Å+V+Ũ◊˙¨ÅVV˝++++++++++¸+
  359. ++++Vf++++˚+V+ÅΨÅŨ¨VV+V+˛V+˛V+˛V+V+V¸+ÅVV++V˛¨ōިÅV++++˛+˛+˛+˛ +++++++˝+Sı+˝VÅÅ˝¨◊¨◊¨◊¨◊Ò¨VV+˚V˛ÅVÅVV˝+ ++VÅ+VV¨¨◊˘¨V˙++++++++˙+
  360. ++++Vh+++˝+VVÅVÅŨÅͨŨÅV˛+V˛+
  361. V+ÅÅV++++˛+VÅVV+Å˝¨Å˛¨ŨÅV˝+++++˛+˛++++++++++dˆ+VÅŨÅ˚¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˚¨VV˛+V˛+V+˛V˝++VVÅVÅVVÅ◊¨¨Å˚¨ÅVV˚+++++++++˙++++V]++++++VVÅŨب◊˛¨◊Ù¨ÅV+˛+˛+++V˙+˚V˙¨ŨŨÅV++++++˙+˛ +++++++˛++_˜+V+ÅÅ¨Å˘¨◊˛¨◊¨◊¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨Å+V¯+V+V+V+VVÅ˝V+Ũ◊¨◊˘¨VV˚++++++++++˙+++Va++++˝+VV˝Å¨Å˙¨Å˙¨Å˜¨◊ÅÅV¸+˜+V+V+V+VŸ¨Å¸¨ÅÅV˛+++++˛+˛++++++++++Vı+ÅVÅÅ¨Å˝¨◊˜¨ŨÅ˚¨◊¨◊¨◊ÅÅVVÙ+
  362. V+V+V+VV¨¨◊˜¨ÅÅ˚+++++++++˛+ +++++Ve
  363. ++++++˝VÅÅÙ¨Ũ¸Å¨Å¯¨ÅÅV+˛+˛+++˚+VިÅ˙¨ÅÅV˛++++˛+˛+++˛++++++++Xı+VV˝Å¨¨◊¨◊¨◊˛¨◊˝¨˛Å˘¨◊¨◊¨¨ÅÅVV+
  364. VV¨¨◊¨◊¨◊¨◊˝¨ÅÅ˘+++++++++˛+˛+++Ve++˛++˝+VVÅÅ˘¨◊˚¨ŨÅ˙¨Å◊¨◊˝¨ÅÅVV˘+ ++++VVŨ◊˜¨ŨVV++˛+++++++++++++++++[ı+VV˝Å˝¨◊¨◊¨◊ˆ¨◊¸¨ ◊¨¨Å¨Å¨ÅÅVV+V¯+V+VV¨¨◊¸¨◊˙¨ÅVV˝+˛+ ++++++˛+ +++++Vb˛+˛+
  365. ++VVÅÅ¨Å¨Å˝¨◊Ú¨◊˛¨◊¨¨ÅÅVÅŨÅÅVV+V¯+VVŨ◊ı¨ŨVV˝+ ++++++˛++++++++++eˆ+VÅŨÅ˚¨◊¨◊¸¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊¨¨VÅV˝Å¨ÅÅVÅ˝V+VVÅŨ¨◊¨◊¨◊¨◊˛¨◊¸¨ÅVV˚++++++++˙++˝+VV˚+˝+VŨب◊ˆ¨◊˘¨ÅV+˝VÅV˙ÅV˝Å˝¨◊¨◊˘¨Å˛¨VV˚++++++++++++++++V`˜+VVŸ¨◊˛¨◊¨◊¨◊˛¨◊˙¨◊˘¨VV+˝VÅV˚Å¨Å¨Å˝¨ ◊¨◊¨◊¨◊¨◊¨¨Å˛¨ÅÅVV˚++++++++˙+++++V_˝+˛+++VÅ˙¨ÅÓ¨ŨŨŨÅŸ+˚VÅV˛Å VÅŨŨ¨◊¨◊¨◊˝¨Å¸¨ÅV˝+!+++++++++++++++++VV˜+V¨¨◊¨◊¨◊¸¨
  366. ◊¨◊¨◊¨◊¨◊¨◊ı¨VV˛+V+˘V    ÅVÅŨŨ¨◊¨˛◊¨◊¨◊¸¨◊¨ÅVV˜+++++˙+˘+V[++˘+VÅı¨◊˛¨◊¨◊¨◊ı¨ÅÅ+V++˝+V+V+V+VVÅŨŨ¨◊¨◊ı¨VV˚++++++++++++++++V[˜+VVÅÅ˘¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨ÅV¯+V+˝V
  367. ÅVÅŨÅ◊¨◊¨◊˙¨◊¨◊¨¨Å¨VV˚+˛+˛+++ˆ+++V`˙+++VVÅÅı¨◊¨◊¨◊˙¨◊˘¨VV++++++V+V+V+VVÅŨ¨◊˘¨Ũ¨◊˚¨ÅÅ˝+++++˛+++++++++VdV¯+V+ÅŨ¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨¨VV¯+V+V+VVÅŨŨ¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊˝¨ÅV˘+++++ı+Å[++˘+VVÅŨ¨◊˙¨◊Ú¨◊¨◊¨◊¨¨ÅV+++˛+˚+VVÅÅ˝¨◊¨◊¯¨◊˘¨ÅÅV++++++++++++++V\˜+V+VŨ¨◊¨◊˛¨◊¨◊¨◊˛¨◊˛¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨¨VVˆ+V+VV˝Å¨¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊˜¨V˛+++˛+Û+ÅV˝+˚+VVň¨◊¨◊Ù¨◊¨◊˛¨    ◊ÅV++++˘+
  368. VVÅVÅŨ¨◊¨◊Ò¨ŨŨÅÅ++++++++++++˛+VTı+ÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊˛¨◊˛¨
  369. ◊¨◊¨◊¨◊¨¨VV¯+V+V+VVÅVÅŨŨ¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊˘¨ÅVË+ÅRˆ+VV˝¨◊˛¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨◊˛¨    ◊¨¨ÅV+++˚+V+¸V¸Å¨¨◊¨◊˙¨◊ı¨ÅV++˛+++Ù+VS˜+VVÅÅ˝¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊¸¨◊¨◊¨◊˛¨◊¨◊ÅÅ˝+++˝+V+V+VV¸ÅV¨¨◊¨◊¨◊¨◊¨◊¨◊ı¨ÅÅÍ+ÅY˘+++VVÅÅ˝¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨◊˝¨˛ÅV˝+++++˚+VVÅVŞVÅŨ¨◊˛¨◊˘¨Å˛¨Å˛¨ÅÅ++Ó+VYV¯+V+ÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨ÅÅVV˘+˘+V+VVÅVŸVÅVŨ◊¨◊¨◊Ô¨VV˙+V˛+V˛+V˛+ÅEˆ+VVÅÅ˚¨◊˛¨◊Û¨ŨÅV˚+++++˘+ VVÅVV+V+V+VVˆ¨Å˛¨Å¸¨ŨÅÅÌ+VSVˆ+
  370. VVÅŨŨ¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊˚¨ÅÅV¸+˛+ı+ VVÅVÅVV+V+VV˨ÅV+V˛+V+V+V˛+V+V+V+ÅNÙ+VVÅVň¨◊¨◊¨◊˘¨ÅV+++++++˛+˚+V+˛V¸+Å˚¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨VÓ+VYV˛+V˙+V+VVÅŨ¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨¨ÅV++++ı+V+V+˛V+V+VV¨ÅVV+V+V+V+V+V+V+V+V+Åd+VV¨¨◊¨◊¸¨◊˛¨◊˛¨◊¨◊¨◊¨¨ÅÅVV++++++˚+V˛+V˛+VVÅ˚¨Å˛¨Å˛¨Å˛¨ŨÅ˙¨ÅV˛+V+V+V+V+V˛+V+VVJV+V˛+Vˆ+VÅ◊¨◊ˆ¨◊¨◊¨◊¨◊¨◊˚¨ÅÅVV¯+ V+V+V+VVÅVÅÅ‚¨ÅV+V+V+V+V+V+V+V+V+Å\Ò+++Vň¨Å˛¨Åˆ¨ŨŨ˝ÅVV+V+V+V+VVÅōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨ÅÅVV+V+V+V+V+V+V+V+VV'V+V+V+V+V˛+V˚+VȨ◊Ô¨ÅÒ¨◊˨ÅVÅ>+V+Å˚¨Å¸¨Å¸¨Å˛¨Åˆ¨ÅÚ¨Å˛¨Å˙¨Å˛¨Å˛¨ÅÚ¨ÅÅVV+ˆV+VÅ,V+V+V+V˛+V˛+V˛+VŨ¨◊∂¨◊˘¨ÅÅVŞVůVÅG˙+V˜+V˙¨ōŞ¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ÅӍŞ¨Å˛¨ōōިŨŨŨŸ¨Åˆ¨ÒVÅ:V+V+V+V+V+V+V+V+V+Ũ◊‚¨◊˛¨◊˛¨◊⁄¨◊˘¨VÅVÅVÅVÅVÅVÅVÅV¨W    +V+V+V+V+V˙+VÅÚ¨Å˛¨ōōŞ¨Å˛¨ÅÓ¨ōōŞ¨Å˛¨Å¨Å¨Å¨Å¨Åˆ¨Å˛¨Ũ¨ÅVÅVÅVÅVÅVÅVÅVVÅLV+V+V+V+V+V+V+V˛+¨¨◊˘¨ÅӍިÅÚ¨Å˛¨Å˛¨Å˛¨Å˛¨ÅÛ¨◊˘¨˝ÅVÅV˛ÅVÅVÅV¨l˙+V˛+V¸+VŸ¨Å¸¨Å¸¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨ōōި
  371. ŨŨŨŨŨŸ¨Å˙¨Å˛¨ŨÅÅVÅVÅVÅVÅVÅVÅÅ)V+V+V+V+V+V+V+V+VV¨¨◊˙¨◊¸¨◊¿¨◊˜¨ÙŨM+V˛+V+V+V˛+V˛+Å˘¨Åˆ¨Å˙¨Å¸¨Ũň¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨÅÚ¨Å˙¨Ũ˜ÅVÅÅ&V+V+V+V+V+V+V+V+VÅ◊∂¨◊Ô¨ŨŨŨ¸Å¨f˛+V˛+
  372. V+V+V+V+V+بŨŸ¨Å˛¨Å˛¨ ōōōōōōŞ¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŨÅÚ¨ōōި˛Å¨˛Å¨¸Å.V+V+V+V+˛V+˛V+VÅ◊¨◊Ú¨◊ ¨◊¨◊̨
  373. ŨŨŨŨŨo+V+V+V+V+V+V+V+VV¯¨ŨŨŨů¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˙¨Å˛¨Å˛¨ōōި ŨŨŨŨÅŨ*V+V+V+˛V +V+V+V+Ũ◊¨◊ı¨Å≈¨◊Î¨Å˛¨ŨŨl˛+V˛+V˛+V+V+VV¯¨Å¨Å¨Å¨Å¨Å¯¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å¸¨Å¸¨Å˛¨ŨŸ¨    Å¨Å¨Å¨Å¨¨*˛V+˛V+˙V+Ũ◊¨◊˛¨◊Ú¨◊ ¨◊˛¨◊ˆ¨◊ˆ¨◊G+V+V+V+V+V+V+V+VVÙ¨ÅͨÅ˙¨Å˙¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨ÅϨ    Å¨Å¨Å¨Å¨¨V+˛V+˛V+˚Vů¨◊Ú¨◊بT+V+V+V+V+˛V+˝V˙¨Å˙¨ÅӍŞ¨Å˛¨Å˛¨ōōŞ¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Åˆ¨Å˛¨Åˆ¨Å˝¨ÒVި◊¨◊∏¨◊˛¨◊Ú¨◊˙¨◊8VV+¸V+V+˚V‹¨Å˙¨Å˛¨ōōިÅ˙¨ōōŞ¨Å˛¨ÅӨبÒVŸ¨◊√¨Åı¨◊Á¨P˝V+˛V+˘VÓ¨Å¨Å˝¨◊˘¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Å˛¨ÅÚ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˝¨1˘VŞVŞVŨ◊˛¨◊¨◊Ó¨◊˛¨◊Œ¨◊˛¨◊¨Å+V˙¨◊˙¨◊=ÙVÅVVÅÙ¨Å˚¨◊Ò¨Å˙¨Å¸¨ōިÅ˙¨Å˛¨ÅÔ¨Å˛+Å˝¨ŨŨÅ˚¨@˚VŞVÅVÅVÅVŨ◊˛¨◊ˆ¨◊˛¨◊¨◊¨◊¨◊¨◊˛¨◊Œ¨◊¨¨V++Å◊¨¨ÅV+VÅ˚¨◊HVӍިVÅÛ¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Åˆ¨V+++¨¨Å+++V˙¨IÅVÅVÅVÅVÅVÅVÅVÅVŨ◊¨◊¨◊¨◊¨◊¨◊˙¨ ◊¨◊ÅV+Ũ◊¨◊¨◊÷¨◊˙¨◊¨◊¨Å˛+¨¨Å¸+V˙¨◊IÙVÅVVÅÙ¨ŨÅ˚¨Å˛+¨¨◊˘¨Å¸¨ōōōŞ¨Å˛¨Å˛¨ÅȨÅ+V+ÅVV¸+
  374. VÅÅ+VŨŨ¨<ÅVÅVÅVÅVÅVÅVÅVÅV¨¨◊¨◊Ó¨
  375. V+VŨ¨◊¨◊¨◊Õ¨VV+ÅVV˝+VÅÅV˛+Å˝¨SˆVŞVÅň¨Å˛¨Å˛¨Å˛¨V++Vň¨Å˛¨Å¨Å¨Å¨Å¨Å˙¨Å˛¨Åˆ¨Å¯¨V++V+++++ÅV++VÅ˝¨OÅVÅVÅVÅVÅVÅVÅVÅŨ¨◊¨◊ˆ¨◊˘¨˛V¨¨◊¨◊˛¨◊‚¨◊˛¨◊¸¨◊¨◊˛¨◊ÅV+V+V¸+ÅV˝+VÅ˝¨◊=VŞV
  376. ÅVÅVÅVÅVÅVÅÛ¨¸Å    ¨Å¨Å¨¨Å+VV˝¨◊Œ¨V˛+V++++V++++V˚¨C    ÅVÅVÅVÅVÅV˛ÅVÅÅÛ¨Å˛+VVÅŞ¨    ÅV+VŨ¨◊¨◊÷¨
  377. ◊¨◊¨◊¨¨VV+V¸+V˙+Å˚¨T˛VÅVÅVÅVÅVŞVÅÅ˙¨Å¸¨V+˝+˛VŨV++VÅ¨Å˛¨Å˛¨Å˛¨ÅΨ◊ÅV+VV++V˝+˛++ިŨ¨H ÅVÅVÅVÅVÅVÅV˝Å˝¨◊˜¨ÅV˙+˛V˛+Ũ◊fi¨◊˙¨◊¨◊¨◊¨◊¨¨˝V˛+V˛+V˝+V¨¨◊˛¨◊O¸V ÅVÅVÅVÅVÅVÅů¨Å¸¨ÅÅ˝++++V˛+˙¨Å˙¨Å˛¨Å˛¨ÅΨ◊˛¨◊¨¨ÅV+V˛+V˚+++˘¨MÅVÅVÅVÅVÅVÅVÅVÅÅÓ¨ÅÅ˝+ ++V+VŨ¨◊¨◊‰¨◊˛¨◊¸¨◊¨◊¨◊¨◊¨Å˛V++˛V+V++++Å˘¨C˛VŞV    ÅVÅVÅVÅVÅĄ̊ ÅV++++V+VÅӍިĄ̊◊¨◊˝¨˝V˘+++ÅŞ¨ŨŨ¨[ ÅVÅVÅVÅVÅVÅV˛ÅV˝¨◊Ԩş+VV¨¨◊¨◊˛¨◊Ú¨◊˛¨◊˛¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊ÅÅVV+˛V+V+V+V+ů¨◊>VŞV ÅVÅVÅVÅVÅVÅÅȨŸ+VÅ·¨◊¯¨◊¨◊˛¨◊¨ÅVV˛+V˛+VVÅVÅبK    ÅVÅVÅVÅVÅV˛ÅV˝ÅϨÅÅVV˛+VVŨ◊Ó¨◊˛¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨◊¨◊¨¨ÅV+V+V+VVÅÅÚ¨D˛VŞV    ÅVÅVÅVÅVÅVÚ¨˝ÅVV+V˛+V˛+VV◊¨◊¨◊¨◊¨¨ÅÅ+V+V+VVÅÅ¨Å¨Å¨Å¨Å˘¨UÅVÅVÅVˆÅı¨ÅÅVV+V¯+V+V+VŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨
  378. ◊¨◊¨◊¨◊¨◊¨Å¸VÅÓ¨◊LVŞV ÅVÅVÅVÅVÅVÅVˆ¨V+˛++++˚+V+VV˜¨◊Ú¨◊ˆ¨◊¨◊¨◊¨◊¨¨ÅÅVV+Vů¨Å˜¨QÅVÅVÅVıÅ◊˘¨ÅV˜+V+V˛+V+VVÅŨ¨◊˛¨◊¨◊¨◊¨◊¸¨◊˛¨◊¨◊¨◊¯¨    ◊¨◊¨◊¨◊¨◊¨˛ÅVÅĄ̊◊KVÅVÅVÅVÅV˛ÅVÅVÅVˆ¨ÅV+˝VŞVÅ˝V˙+VÅ˚¨◊ʨ◊¨◊˘¨ōōōŞ¨Å˛¨Å˙¨Å˝¨Z˛ÅVÙŨ◊¨◊˛¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨VV˛+V+V+VÅ◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊‰¨◊<ÅÅVÅVÅV˙ÅVÅŨ¨◊ȨÅV˙+ި◊¨◊¸¨◊˛¨◊˛¨◊ˆ¨◊¨◊¨◊˘¨ÅÁ¨=ÅVÅVÅVˆÅ¨◊¨◊¨◊ΨV˚+VV¨¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨◊fi¨◊¨◊@VÅVÅVÅVÅV˛ÅV˝Å¨¨◊˘¨Å˙¨Å˛¨˝ÅV˘+VŨ¨◊ˆ¨◊¨◊ˆ¨◊˝¨Åˆ¨ÅȨE˛ÅV˘Å¨˛Å¨¨◊¨◊¨◊Û¨ÅÅ˝V+V˙+VVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊ͨ◊Ú¨◊˙¨◊DVÅVÅVÅVÅV˘Å˝¨◊˜¨ÅÅVV+V˘+˚+VVÅÅ˝¨◊˛¨◊¨◊¨◊˘¨Å˛¨Å˛¨Å˛¨Åfl¨0ÅVÅV˜Å¨Å¨¨◊¨◊¨◊˘¨VÌ+V+ÅVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊è◊GVÅVÅVÅVÅV˘ÅÛ¨V++˝+V+¸V˙+VVÅÅ¨Å˛¨Å˛¨Å˛¨Åˆ¨Å˛¨Å˙¨Å˛¨Å˘¨BıÅ ¨Å¨Å¨¨◊¨◊¨◊¨◊˚¨ÅŞV˝Å˝¨◊¨◊¨ÅV˚+ÅVÅÅ˝¨◊˛¨◊Ó¨◊ͨ◊˙¨◊˛¨◊+ÅÅVÅV˘Å¨˛Å˝¨◊ı¨ÅÛ¨Å˝+++˝VÅŞ¨Å«¨:˚Ũ˛Å ¨Å¨Å¨Å¨¨◊¨◊¨◊ˆ¨◊Ù¨◊¨Å¸+V+˝VÅfi¨◊˙¨◊˛¨◊ˆ¨◊¨◊*˙Ũ˛Å¨˛Å¨ÅʨŸ¨ÅV++˝+V+V+Åň¨Å—¨\˝Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨◊¨◊¨◊¨◊˛¨◊Ó¨◊ÅV¸+V+V+VV˝¨◊˛¨◊˛¨◊˙¨◊˙¨◊¨◊¸¨◊˛¨◊˛¨◊¨◊¨◊˙¨◊˛¨◊&¸Å¨˛Å¨Å¨Å¨Å¨Å˝¨◊ȨŸ¨V˘+V+VV≈¨
  379. d,     Helvetica
  380. .°dONLNd&q(B0CAROLINE ROSE, Palatino°dONLNd}ñâ◊(•¥Dear Readers,°dONLNd¢ñÆΩ*%develop °dONLNd$¢ΩƉ)'@does it again! We’re thrilled to announce that we’ve won another°dONLNdeÆñ∫Ô(÷¥LExcellence award, this time in the 1993 International Technical Publications°dONLNd≤∫ñΔÃ* BCompetition, sponsored by the Society for Technical Communication.°dONLNdı“ñfil*0Some things that are worth noting in this issue:°dONLNd&‰®Æ+•°dONLNd(‰¥’) <We’re very happy to finally have a female author. Welcome to°dONLNde¥¸õ* 3Deanna Thomas; may she be the first in a long line.°dONLNdö®Æ(*Δ•°dONLNdú¥ª) 6We’ve added a strange new column called “View From the°dONLNd”¥›* CLedge”; please let us know what you think of this irreverent (or is°dONLNd¥&:* that “irrelevant”?) addition.°dONLNd5,®8Æ(TΔ•°dONLNd7,¥8—) =We’re temporarily without a Print Hints or Graphical Truffles°dONLNdu8¥Dπ* ;column. But there’s a lot of information about printing and°dONLNd±D¥PÅ* ,graphics in our three QuickDraw GX articles.°dONLNdfi\ñh˝(Ñ¥NFinally, here are two changes that have happened as a result of your feedback:°dONLNd-n®zÆ+•°dONLNd/n¥zfi) @Tech Notes are numbered again, this time within each category of°dONLNdpz¥Ü* Note. References in °dONLNdÑzÜ4)Ydevelop °dONLNdåz4Üfi)'%will include the new number after the°dONLNd≤Ü¥íø(Æ“:category; for example, we might refer you to the Macintosh°dONLNdÌí¥û—* <Technical Note “Fond of FONDs” (Text 21). With this issue we°dONLNd*û¥™ª* ;finally stop giving the former number of a Tech Note, as in°dONLNdf™¥∂î* 2“(formerly #91)”; those old numbers are long gone.°dONLNdöº®»Æ(‰Δ•°dONLNdúº¥»Ã) New °dONLNd†ºÃ»)Inside Macintosh °dONLNd±º»X)Pis now on the °dONLNdøºX»∞)<develop Bookmark °dONLNd–º∞»Ã)XCD. It°dONLNd◊»¥‘Œ(“>was painfully missing from Issue 14’s CD, but we have seen the°dONLNd‘¥‡∫* ;error of our ways and have quickly rectified the situation.°dONLNdRÎñ˜Å(¥3Please keep letting us know what you want; it pays!
  381. £S.òÅ&Ä&HHˆu§4ˇˇˇˇˇˇˇ˛˛˛˛˛˛˝˝˝˝˝˝¸¸¸¸¸¸˚˚˚˚˚˚˙˙˙˙˙˙˘˘˘˘˘˘¯¯¯¯¯¯˜˜˜˜˜˜    ˆˆˆˆˆˆ
  382. ıııııı ÙÙÙÙÙÙ ÛÛÛÛÛÛÚÚÚÚÚÚÒÒÒÒÒÒÔÔÔÔÔÔÓÓÓÓÓÓÌÌÌÌÌÌÏÏÏÏÏÏÎÎÎÎÎÎÍÍÍÍÍÍÈÈÈÈÈÈËËËËËËÁÁÁÁÁÁÊÊÊÊÊʉ‰‰‰‰‰„„„„„„‚‚‚‚‚‚······‡‡‡‡‡‡ flflflflflfl!fifififififi"››››››#‹‹‹‹‹‹$€€€€€€%⁄⁄⁄⁄⁄⁄&ŸŸŸŸŸŸ'ÿÿÿÿÿÿ(◊◊◊◊◊◊)÷÷÷÷÷÷*’’’’’’+‘‘‘‘‘‘,””””””-““““““.——————/––––––0œœœœœœ1ŒŒŒŒŒŒ2ÕÕÕÕÕÕ3ÃÃÃÃÃÃ4ÀÀÀÀÀÀ5      6………………7»»»»»»8««««««9ΔΔΔΔΔΔ:≈≈≈≈≈≈;ƒƒƒƒƒƒ<√√√√√√=¬¬¬¬¬¬>¡¡¡¡¡¡?¿¿¿¿¿¿@øøøøøøAææææææBΩΩΩΩΩΩCººººººDªªªªªªE∫∫∫∫∫∫FππππππG∏∏∏∏∏∏H∑∑∑∑∑∑I∂∂∂∂∂∂JµµµµµµK¥¥¥¥¥¥L≥≥≥≥≥≥M≤≤≤≤≤≤N±±±±±±O∞∞∞∞∞∞PØØØØØØQÆÆÆÆÆÆR≠≠≠≠≠≠S¨¨¨¨¨¨T´´´´´´U™™™™™™V©©©©©©W®®®®®®XßßßßßßY¶¶¶¶¶¶Z••••••[§§§§§§\££££££]¢¢¢¢¢¢^°°°°°°_††††††`üüüüüüaûûûûûûbùùùùùùcúúúúúúdõõõõõõeööööööfôôôôôôgòòòòòòhóóóóóóiññññññjïïïïïïkîîîîîîlììììììmíííííínëëëëëëoêêêêêêpèèèèèèqéééééérççççççsååååååtããããããuäääääävââââââwààààààxááááááyÜÜÜÜÜÜzÖÖÖÖÖÖ{ÑÑÑÑÑÑ|ÉÉÉÉÉÉ}ÇÇÇÇÇÇ~ÅÅÅÅÅÅÄÄÄÄÄÄÄÅ~~~~~~Ç}}}}}}É||||||Ñ{{{{{{ÖzzzzzzÜyyyyyyáxxxxxxàwwwwwwâvvvvvväuuuuuuãttttttåssssssçrrrrrréqqqqqqèppppppêooooooënnnnnnímmmmmmìllllllîkkkkkkïjjjjjjñiiiiiióhhhhhhòggggggôfffffföeeeeeeõddddddúccccccùbbbbbbûaaaaaaü``````†______°^^^^^^¢]]]]]]£\\\\\\§[[[[[[•ZZZZZZ¶YYYYYYßXXXXXX®WWWWWW©VVVVVV™UUUUUU´TTTTTT¨SSSSSS≠RRRRRRÆQQQQQQØPPPPPP∞OOOOOO±NNNNNN≤MMMMMM≥LLLLLL¥KKKKKKµJJJJJJ∂IIIIII∑HHHHHH∏GGGGGGπFFFFFF∫EEEEEEªDDDDDDºCCCCCCΩBBBBBBæAAAAAAø@@@@@@¿??????¡>>>>>>¬======√<<<<<<ƒ;;;;;;≈::::::Δ999999«888888»777777…666666 555555À444444Ã333333Õ222222Œ111111œ000000–//////—......“------”,,,,,,‘++++++’******÷))))))◊((((((ÿ''''''Ÿ&&&&&&⁄%%%%%%€$$$$$$‹######›""""""fi!!!!!!fl      ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛ Ù ı
  383.  
  384.  
  385.  
  386.  
  387.  
  388. ˆ                        ˜¯˘˙˚¸˝˛ˇÄ&£S.ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€
  389. ů˙ˇÅÎ
  390. Å˙˜ˇÅÏ
  391. Å¸ÙˇÅÌ
  392. Å˛ÒˇÅÓÅ˘ˇ˝¸ˇÅÓ Å˘ˇ˙¸ˇÅÔ Ç˙ˇ˜˝ˇÅÔ É˚ˇı˝ˇÅÔ Ñ˚ˇÙ˝ˇÅÔ Ö¸ˇÚ˝ˇÅÔ Ü¸ˇÒ˝ˇÅÔ á¸ˇ˝ˇÅÔ à¸ˇÓ˝ˇÅ â¸ˇÌ˝ˇÅ»˛ˇΔ¸ˇÏ˝ˇÅÀ˜ˇÀ¸ˇÏ˝ˇÅÔÕÙˇÕ¸ˇÎ˝ˇÅÔœÚˇÕ˝ˇÍ˝ˇÅÔ—˘ˇ˚˝ˇœ˝ˇÈ˝ˇÅÔ”˙ˇ˜˛ˇ–¸ˇÍ¸ˇÅÔ‘˙ˇˆ˛ˇ—¸ˇÈ˝ˇÅÓ’˚ˇÙ˛ˇ“¸ˇË˝ˇÅÓ◊˚ˇÛ˝ˇ”¸ˇË¸ˇÅÓÿ˚ˇÚ˝ˇ”˝ˇË¸ˇÅÌŸ˚ˇÒ˝ˇ‘˝ˇÁ¸ˇÅÌ⁄¸ˇÔ˝ˇ’¸ˇË¸ˇÅÏ€¸ˇÓ˛ˇ’¸ˇË˚ˇÅÏ‹¸ˇÌ˛ˇ’˝ˇÁ¸ˇÅΛ¸ˇÌ˝ˇ÷˝ˇÁ¸ˇÅÍfi¸ˇÏ˛ˇ÷˝ˇÁ˚ˇÅÍfl¸ˇÎ˛ˇ◊¸ˇË˚ˇÅȇ¸ˇÎ˝ˇ◊˝ˇË˚ˇÅË·¸ˇÍ˛ˇ◊¸ˇÈ˚ˇÅÁ‚˝ˇÈ˝ˇÿ¸ˇÈ˚ˇÅÊ„¸ˇÈ˛ˇÿ˚ˇÍ˚ˇÅ„˝ˇÈ˛ˇ◊˘ˇÌ˙ˇÅ‰¸ˇÈ˛ˇÿ¯ˇÔ˘ˇÅ‰‰˝ˇËˇˇÿ˜ˇ˙ˇÅ‚½ˇË˛ˇŸˆˇÒ˙ˇÅ·ʸˇË˛ˇŸ˜ˇÚ˘ˇÅ‡Á¸ˇË˛ˇŸˆˇÙ¯ˇÅflÁ˝ˇÁ˛ˇ⁄ˆˇÙ˘ˇÅ›˸ˇË˛ˇŸ˜ˇı¯ˇÅ‹ȸˇÁ˛ˇ⁄ˆˇ˜˜ˇÅ€È˝ˇÊˇˇ⁄ˆˇ¯˜ˇÅŸ͸ˇÁ˛ˇ⁄˜ˇ˘˜ˇÅ◊Í˝ˇÊˇˇ⁄˜ˇ˙ˆˇÅ÷νˇÊˇˇ⁄ˆˇ˝ıˇÅ‘νˇÁ˛ˇ⁄˜ˇÙˇ®ˇˇ≠ϸˇæÈˇ©˘ˇ∞Ï˝ˇΩΡ®˜ˇ±̸ˇæÌˇºˇˇÌˆˇ±Ì˝ˇΩÔˇº¸ˇÛˇ≤Ì˝ˇæÒˇª˙ˇ˙ˇ¸ˇ≤Ì˛ˇæÚˇ∫˘ˇÒ˚ˇ¸˝ˇ≤Ó˝ˇæÙˇ∫˜ˇÒ¸ˇ¸¸ˇ≤Ó˝ˇøÙˇºıˇÒ¸ˇ˚˝ˇ±Ó˝ˇ¿Ùˇ”¸ˇÛˇÒ¸ˇ¸¸ˇ±Ó˛ˇ¿Ùˇ”˙ˇÛÒˇÚ¸ˇ¸¸ˇ∞Ô˝ˇ¡Ùˇ”¯ˇ˜ıˇ¸ˇÒ¸ˇ˝˚ˇ∞ Ô˝ˇ√Ûˇ“¯ˇ˚Ûˇ¸ˇ¸ˇ˙ˇØÔ˝ˇƒÚˇ”Êˇ¸¸ˇÙˇÆÔ˛ˇƒÚˇ”Áˇ˚¸ˇÓˆˇ≠˝ˇΔˇ‘Áˇ˚˚ˇÓ¯ˇ´˝ˇ«Ôˇ’Ρ¸ˇ˝˚ˇÓ¯ˇ™˝ˇ…Ìˇ÷Ôˇ˚¸ˇ˝¸ˇıˇ™%˝ˇÀÒˇ˝ˇ◊¯ˇ˝ˇ˜˚ˇ˚ˇÚÒˇ¨(˝ˇÃ˘ˇ˘ˇ˝ˇÿ¯ˇ˝ˇˆÙˇÙΡΔÛˇ¯3˝ˇŒ¯ˇ˙ˇ˛˝ˇŸ¯ˇ˛˝ˇˆıˇ˜ÚˇÊˇˇˇ¸ˇ˘⁄ˇ˘"˝ˇœ˘ˇ˛˘ˇ˝˝ˇ€¯ˇ˛˝ˇÙ‡ˇ˙∞ˇ˘"˝ˇ—˘ˇ¸˙ˇ¸˝ˇ›˜ˇ˝˝ˇÙ‚ˇ˜≤ˇ¯"˝ˇ“˘ˇ¸˙ˇ˚˝ˇfl˜ˇ¸¸ˇÛÊˇÚ¥ˇ¯&˝ˇ‘˘ˇ˚˘ˇ˚¸ˇ„ıˇ¸¸ˇÚˡӫˇ¸˝ˇ˝ˇ÷˘ˇ˘˙ˇ˘¸ˇÊıˇ˙¸ˇÒÓˇï"˝ˇ◊˘ˇ¯˚ˇ¯˚ˇÎÚˇ˙¸ˇÔ˛ˇ¸ˇå˝ˇŸ˘ˇ˜˙ˇ˜˚ˇÔˇ˙˚ˇÅÒ˝ˇ€˘ˇˆ˙ˇı˘ˇ˜Îˇ¸˙ˇÅ˝ˇ‹˙ˇÙ˚ˇÛ·ˇ¸ˇ¸˙ˇÅÔÔ˝ˇfl˘ˇÛ˚ˇÚ¡˝¸ˇ˝˙ˇÅÓÔ˝ˇ·˘ˇÚ˚ˇÔΡ˘˝ˇ˛˘ˇÅÌÔ˝ˇ„¯ˇÒ¸ˇÏÒˇıÛˇÅÏÓ˝ˇÊ¯ˇ˚ˇÈ˙ˇÔÙˇÅÎÓ˝ˇË¯ˇÓ¸ˇœˆˇÅÈÓ¸ˇÏˆˇÓ˚ˇŒ¯ˇÅË̸ˇıˇÏ¸ˇÃ˚ˇÅÊÌ˙ˇıÙˇÎ˚ˇ ˇÅ„ϘˇˇË¸ˇÅ™ Í͡¸ˇÅ™ ËÓˇ‰¸ˇÅ© ÂÙˇ·˝ˇÅ®π¸ˇÅ®π¸ˇÅ®∫¸ˇÅß∫¸ˇÅߪ¸ˇÅ¶ª¸ˇÅ¶º¸ˇÅ•º¸ˇÅ•º˝ˇÅ§º˝ˇÅ§Ω¸ˇÅ§Ω˝ˇÅ£Ω˝ˇÅ£Ω˛ˇÅ¢æ¸ˇÅ£Ω˛ˇÅ¢ªˇÅ¢ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€ÅÅ€
  393. d    °dONLNdÜ6íA◊+¸JCaroline Rose°dONLNdîBíM∞* Editor xBx/(Ö. )2+Ç
  394. CAROLINE ROSE )D(AppleLink CROSE) has written(ô¥0and edited more technical documentation than she*
  395. 5cares to remember. In past work lives, she was also a*
  396. 2programmer and (gasp!) a manager. She’s worked for*
  397. 4Tymshare, Apple, NeXT, and Apple, in that order. But*
  398. 3no previous job compares to the variety and fun she*
  399. enjoys as editor of )?develop). Caroline is still raving(’¥-about the great time she had at the Worldwide(èv,Developers Conference in May. We suspect the*
  400. 4highlight was when a developer asked her to sign his*
  401. copy of )develop)& — or was it when she took the Karaoke(≠v2dare at the WWDC party? Recent delights outside of*
  402. 3work include singing like a wannabe Bonnie Raitt at*
  403. 7jam sessions with her friends and listening to tapes of*
  404. 2John Prine and Richard Thompson from an incredible*
  405. 2music festival she attended in a mountain meadow.•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇæ◊#ˇ ˇˇˇˇ#◊ 
  406. d,     Helvetica.°dONLNdu5áç+S¢LETTERS
  407. °dONLNdñ$1(@¥NEW TECH NOTE NUMBERS, Palatino°dONLNd(ñ4°*In °dONLNd!(°4Δ) develop°dONLNd((Δ4K)% Issue 14 Peter Fink complains°dONLNdG4ñ@C(\¥&about the loss of Tech Note numbering.°dONLNdo@ñL**  In your answer you write: “We’re°dONLNdêLñX8* %always open to suggestion, but so far°dONLNd∂Xñd>* 'you’re the only one to mention this. If°dONLNdfidñpF* &others reading this reply have similar°dONLNdpñ|@* &feedback, I hope they’ll let us know.”°dONLNd-ÄñåK*&Actually, I and others have complained°dONLNdTåñòE* 'about the loss of Tech Note numbers for°dONLNd|òñ§D* &quite some time, but sometimes talking°dONLNd£§ñ∞B* &about these things is like complaining°dONLNd ∞ñº,* !about the weather. I suspect most°dONLNdϺñ»3* #people just grumble along and don’t°dONLNd»ñ‘Ú* complain in writing.°dONLNd%‹ñË*— Johan G. E. Strandberg°dONLNd>˜ñ?*$Good news: Numbers are back; see the°dONLNdcñE* &editorial on page 2 and the Tech Notes°dONLNdäñ7* %on this issue’s CD. It’s too bad when°dONLNd∞ñ';* #people grumble without writing; the°dONLNd‘'ñ3=* %latter is much more effective, and we°dONLNd˙3ñ?@* %really appreciate the effort. Thanks!°dONLNd GñS·*— Caroline Rose°dONLNd0cño-*DEBUGGING LESSON FLUB°dONLNdFsñ>*$There seems to be a problem with the°dONLNdkñã@* $point made in the “Debugging Lesson”°dONLNdêãñó* !letter in the Letters section of °dONLNd±ãóB)ádevelop°dONLNdπóñ£D(ø¥)Issue 14. According to the source listed,°dONLNd„£ñØ-* !there would be no problem even if°dONLNdØñª;* memory moved when FillWithData°dONLNd$ªñ«=* %was called. Since the handle is being°dONLNdJ«ñ”$*  passed as a handle (that is, not°dONLNdk”ñflA* %dereferenced), and handles are 4-byte°dONLNdëflñÎ9* #pointers (which get pushed onto the°dONLNdµÎñ˜/*  stack as is), FillWithData would°dONLNd÷˜ñ<* #always get a valid handle, which it°dONLNd˙ñH* )can dereference internally to its heart’s°dONLNd$ñπ* content.°dONLNd-ñ+J*)Unfortunately, there seems to be a lot of°dONLNdW+ñ7J* (confusion (and a great deal of paranoia)°dONLNdÄ7ñC;* %over the usage of handles. As long as°dONLNdßS$Í(@q you pass handles as handles (and°dONLNd»$S0ı* $watch your dereferencing), you’ll be°dONLNdÌ0S<f* OK.°dONLNdÒBSN™*—Charlie Reading°dONLNd]SiÒ*#Um, oops. (Imagine, if you will, me°dONLNd&iSufl* standing gaping and red-faced,°dONLNdEuSÅ* %astonished at my own carelessness and°dONLNdkÅSçw* idiocy.)°dONLNdtëSùı*&You’re right, of course; the danger is°dONLNdõùS©* 'only in passing dereferenced handles to°dONLNd√©Sµ* (routines in other segments, and the code°dONLNdϵS¡¸* 'in the letter passes the handle itself.°dONLNd¡SÕı* 'I guess I just read the text and didn’t°dONLNd=ÕSŸ˙* &really look closely at the code before°dONLNddŸSÂÂ*  replying. Obviously, it was only°dONLNdÖÂSÒÂ* intended as an example, and the°dONLNd•ÒS˝Ù* &writer’s point is still valid: passing°dONLNdÃ˝S    * #dereferenced handles to routines in°dONLNd    S* 'other segments is dangerous. You should°dONLNdS!¯* %either pass the handle itself (as the°dONLNd>!S-ˇ* %example code did!) or lock the handle°dONLNdd-S9j* first.°dONLNdk=SI«*Sorry about the confusion.°dONLNdÜOS[ö*—Dave Johnson°dONLNdîkSw°* BABBLING ON°dONLNd†{Sá*'I enjoyed reading Dave Johnson’s column°dONLNd»áSì^* in °dONLNdÀá^ìÖ) develop °dONLNd”áÖì)'Issue 13 (“Tower of Babble”).°dONLNdÒìSü(ªq'While reading his discussion of natural°dONLNd    üS´* 'versus programming languages, I think I°dONLNd    A´S∑˛* %was able to put my finger on what has°dONLNd    g∑S√“* bugged me about HyperTalk°dONLNd    Ä∑“ø◊(‹®
  408. °dONLNd    Å¥◊¿Ÿ) °dONLNd    Ç∑Ÿ√+
  409. for years.°dONLNd    ç√Sœ(Îq%Natural languages imply a fluidity of°dONLNd    ≥œS€€* meaning, giving its users great°dONLNd    ”€SÁ˛* &flexibility for nuances, emphasis, and°dONLNd    ˙ÁSÛ≤* brevity.  HyperTalk °dONLNd
  410. Á≤ÛÃ)_looks °dONLNd
  411. ÁÃÛÁ)like a°dONLNd
  412. ÛSˇ˛(q'natural language, but it possesses none°dONLNd
  413. CˇS €* of that fluidity of meaning. In°dONLNd
  414. c Sà*     HyperCard°dONLNd
  415. l àç(0¶®
  416. °dONLNd
  417. m ç+, SET has but one meaning.°dONLNd
  418. âS#(?q&But in my Oxford dictionary, “set” has°dONLNd
  419. ∞#S/‡*  194 definitions! In other words,°dONLNd
  420. —/S;* %HyperCard looks so much like English,°dONLNd
  421. ˜;SG* 'one winds up assuming that all kinds of°dONLNd GSS∫* structures could be used vBv/+ƒ
  422.  +
  423. 3(è¥WE HATE IT WHEN YOU DON’T WRITE*
  424. 4We welcome timely letters to the editors, especially*
  425. 4from readers reacting to articles that we publish in*
  426. develop).. Letters should be addressed to Caroline Rose(∑¥(or, if technical )4develop)-related questions, to Dave(¡¥/Johnson) at Apple Computer, Inc., 20525 Mariani*
  427. (Avenue, M/S 303-4DP, Cupertino, CA 95014*
  428. ,(AppleLink CROSE or JOHNSON.DK). All letters*
  429. ,should include your name and company name as(çv2well as your address and phone number. Letters may*
  430. 7be excerpted or edited for clarity (or to make them say*
  431. what we wish they did).•+hQ
  432. LETTERS   )&September 1993ˇ◊#ˇ ˇˇˇˇ#◊ 
  433. d, Palatino
  434. .°dONLNdñ$=+¥@%as long as they make sense in English°dONLNd&$ñ0!*  (for example, “set me to true”).°dONLNdG4ñ@H*&Allow me to submit a suggestion, which°dONLNdn@ñL.* !you may wish to pass along to the°dONLNdêLñXG* &software gods. Since Apple has now all°dONLNd∑Xñd9* #but declared that C and C++ are the°dONLNd€dñp7* !only computer languages the human°dONLNd˝pñ|C* &race will ever need, maybe it would be°dONLNd$|ñà)* great to have a HyperTalk-to-C°dONLNdCàñî9* #translator. Why? Well, C is a write°dONLNdfà9î=)£-°dONLNdgîñ†J(º¥)only language (no one ever can figure out°dONLNdë†ñ¨?* $what’s happening in someone else’s C°dONLNd∂¨ñ∏B* %listing) and HyperTalk is a read-only°dONLNd‹∏ñƒ8* %language (it’s a cinch to understand,°dONLNdƒñ–.* "but impossible to code in). With a°dONLNd&–ñ‹8* $translator, we could write code that°dONLNdK‹ñËG* )still could be understood, just like when°dONLNduËñÙH* *we used to code in Pascal. (Yes, this is a°dONLNd†Ùñ* joke, from a die-hard Pascal°dONLNdΩñ Õ* enthusiast.)°dONLNd ñ)* Thanks again for a nifty column!°dONLNdÎ$ñ0‡*—Kevin Killion°dONLNd˙?ñK6*#I’m glad you liked the column. Your°dONLNdKñWF* $comment about HyperTalk is very well°dONLNdCWñc3* !taken! I think that’s what always°dONLNdecñoJ* (bothered me about it, too, though it was°dONLNdéoñ{ * just a sort of vague unease.°dONLNd´{ñá3* !Unfortunately, I think people who°dONLNdÕáñì7* "didn’t learn “regular” programming°dONLNdìñü6* #languages first may have a distinct°dONLNdüñ´C* #disadvantage: we “real” programmers°dONLNd8´ñ∑9* #know up front how limited and terse°dONLNd\∑ñ√B* %and strict programming languages are,°dONLNdÇ√ñœG* &and we don’t expect anything more. But°dONLNd©œñ€B* $power users who learn HyperTalk (or,°dONLNdŒ€ñÁG* &more likely now, AppleScript) as their°dONLNdıÁñÛ@* #very first programming language may°dONLNdÛñˇ;* 'be in for a struggle if they don’t keep°dONLNdAˇñ "* reminding themselves that it’s°dONLNd_ˇ" 4)å not °dONLNddˇ4 :)a°dONLNdf ñÊ(3¥natural language.°dONLNdxñ'%* As a die-hard C enthusiast, I’ll°dONLNdô'ñ3I* 'graciously ignore your slams against my°dONLNd¡3ñ?6* "favorite language, and assume that°dONLNdÊS$ı(@q%since you’re obviously an intelligent°dONLNd $S0˜* 'person, sooner or  later you’ll realize°dONLNd40S<* &the error of your ways and come around°dONLNd[<SHÍ* !to the truth, bemoaning the years°dONLNd}HST˙* %you’ve spent in bondage to an uptight°dONLNd£TS`~*     compiler.°dONLNdØhStö*—Dave Johnson,     Helvetica°dONLNdΩÑSêÔ*ASYNCH SUPPORT ON A/UX°dONLNd‘îS†Ò*"After reading through Jim Luther’s°dONLNd˜†S¨Ê*  Asynchronous Routines article in°dONLNd¨S∏z* develop °dONLNd ¨z∏Â)'Issue 13, I spiffed up my°dONLNd:∏Sƒ‚(‡qapplication to make all my file°dONLNdZƒS–˘* #handling asynchronous, anticipating°dONLNd~–S‹˝* %the glorious day when all the drivers°dONLNd§‹SË* $on my Macintosh support asynchronous°dONLNd…ËSÙ* 'calls. But since the SCSI Manager isn’t°dONLNdÒÙS˝* %asynchronous yet, there’s no apparent°dONLNdS ˝* (difference to the user of my code (or to°dONLNd@ S* #me, the hard-working programmer who°dONLNddS$”* wants payoff for my labors).°dONLNdÅ(S4*(Is there any platform or configuration I°dONLNd™4S@˛* &can test my application on and see the°dONLNd—@SL≠* results of my effort?°dONLNdÁTS`°*—Tony Amaretto°dONLNdˆoS{Ê* Try your code on A/UX 3.0.1 (the°dONLNd    {Sá‡* operating system for the Apple°dONLNd    6áSì˜* $Workgroup Server 95); it features an°dONLNd    [ìSü¸* #enhanced File Manager that supports°dONLNd    üS´–* asynchronous calls to UNIX°dONLNd    ôü–ß’(ƒÓ®
  435. °dONLNd    öú’®◊) °dONLNd    õü◊´Ë+file°dONLNd    †´S∑(”q&systems simply by using the techniques°dONLNd    «∑S√* 'in Jim Luther’s article. AppleShare Pro°dONLNd    Ô√Sœ˛* %takes advantage of this capability on°dONLNd
  436. œS€˘* $AWS 95 to get performance up to four°dONLNd
  437. :€SÁÚ* "times better than AppleShare 3.0’s°dONLNd
  438. ]ÁSÛÊ*  under System 7 (your mileage, as°dONLNd
  439. ~ÛSˇ≠* always, will vary).°dONLNd
  440. íSÛ*#For more information related to the°dONLNd
  441. ∂S˚* %Asynchronus Routines article, see the°dONLNd
  442. ‹S'∞* box on the next page.°dONLNd
  443. Ú+S7Å*    Have fun!°dONLNd
  444. ¸?SKö*—Dave Johnson tBt/(w0 +
  445. 4+Ç SUBSCRIPTION INFORMATION*
  446. Subscriptions to )8develop )are available through APDA(°¥4(see inside back cover for APDA information), or you*
  447. 8can use the subscription card in the back of this issue.*
  448. 4Please address all subscription-related inquiries to*
  449.     develop, )'Apple Computer, Inc., P.O. Box 531, Mt.(…¥+Morris, IL  61054 (or AppleLink DEV.SUBS).•(çv BACK ISSUES*
  450. %For information about back issues of )|develop )and how(°v5to obtain them, see the last page of this issue. Back*
  451. issues are also on the)I develop Bookmark)A  CD and the(µvDeveloper CD Series)I disc (Reference Library(øv
  452. edition).•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇ◊#ˇ ˇˇˇˇ#◊ 
  453. d,     Helvetica .°dONLNd$(2+FM)MORE ON ASYNCHRONOUS ROUTINES IN ISSUE 13"68# 696+"6,#"78 "7,     °dONLNd,;(F*7For developers interested in the “Asynchronous Routines°dONLNddG(Rñ* on the Macintosh” article in °dONLNdÅGñR∏)ndevelop °dONLNdâG∏R˘)"Issue 13, here’s°dONLNdöS(^˜(zF2some new information that has surfaced since then.°dONLNdÕj(uh* StackSpace.°dONLNdÿjhu
  454. )@) Contrary to the advice on page 28 of the°dONLNdv(Å    (ùF:article, you should not call StackSpace at interrupt time,°dONLNd=Ç(ç‰* ,because the Memory Manager might not be in a°dONLNdjé(ôÚ* 0consistent state. Furthermore, StackSpace clears°dONLNdõö(•* /MemErr, which may have an adverse effect on the°dONLNdÀ¶(±* 4current process’s handling of Memory Manager errors.°dONLNdº(«e* PPC polling.°dONLNd ºe«Û)=# Unlike the Device Manager and File°dONLNd0»(”Î(ÔF0Manager, the PPC Toolbox stuffs the result of an°dONLNda‘(fl∂* #asynchronous routine into ioResult °dONLNdÑ‘∂fl–)ébefore°dONLNdä‘–fl ) it’s really done°dONLNdú‡(Î(F7with the parameter block. If your interrupt code — such°dONLNd’Ï(˜* 8as a VBL task — polls ioResult periodically to check for°dONLNd¯(˜* 1completion and reuses the parameter block to make°dONLNd@(    * 6another call, the system can crash because one or more°dONLNdw(¨*  system queues will be corrupted.°dONLNdò&(1Ö*Context switching.°dONLNd™&Ö1)] The System 7 Process Manager°dONLNd»2(=Í(YF4(and MultiFinder under System 6) will wait until all°dONLNd˝>(IÚ* 2currently active asynchronous requests to the File°dONLNd0J(U˛* 2Manager have completed before performing a context°dONLNdcV(a* 6switch. This check was added for compatibility reasons°dONLNdöb(m
  455. * 6to prevent system crashes caused by a few applications°dONLNd—n(yÚ* 1that accessed program globals within File Manager°dONLNdz(Ö˜* 5completion routines without restoring their A5 world.°dONLNd9Ü(ë* 8What this means to you is that if your application makes°dONLNdrí(ùÌ* 0an asynchronous File Manager call and then calls°dONLNd£û(©* 2WaitNextEvent or GetNextEvent, the system may wait°dONLNd÷™(µÓ* 3for your call to complete. If the asynchronous File°dONLNd
  456. ∂(¡* :Manager call takes a long time to complete, it will appear°dONLNdE¬(ÕŸ* -to the user that the system isn’t responding.°dONLNdsÿ(„ì*Synchronous drivers.°dONLNdáÿì„˛)k Although you can execute°dONLNd°‰(ÔÈ( F0low-level file access routines asynchronously, a°dONLNd“(˚Ò* 1volume’s underlying device driver may not support°dONLNd¸(Ó* .asynchronous operations. Once the File Manager°dONLNd3(˝* 5passes a request to a synchronous driver, that driver°dONLNdi(* 8doesn’t give up control until it has completed the task.°dONLNd¢ (+* 4Synchronous drivers (such as those using the current°dONLNd◊,(7 * 5SCSI Manager) affect programs using asynchronous File°dONLNd;#FÒ(bA0Manager calls in two ways: unexpected pauses and°dONLNd?G#Rú* unsightly stack frame buildup.°dONLNd^]&h)+•°dONLNd`]2h) 2When calling the File Manager asynchronously, your°dONLNdìi2tˇ* 2program passes control to the File Manager and the°dONLNdΔu2ÄÈ* 0request is placed in a queue or, if the queue is°dONLNd˜Å2å¯* 1empty, the request is handled immediately. Either°dONLNd    )ç2ò* 3way, once a synchronous driver gets the request, it°dONLNd    ]ô2§* 6retains control until it has responded to the request.°dONLNd    î•2∞* 6If the request takes a long time to complete, the user°dONLNd    À±2ºÈ* .may think the system isn’t responding. If your°dONLNd    ˙Ω2»Û* /program is a background task, these pauses will°dONLNd
  457. *…2‘Ù* 0affect the performance of the current foreground°dONLNd
  458. [’2‡¯* 2application. To keep this to a minimum, avoid time°dONLNd
  459. ç’¯‡˚)Δ-°dONLNd
  460. é·2ϯ(P-consuming asynchronous File Manager requests.°dONLNd
  461. ºÛ&˛)(D•°dONLNd
  462. æÛ2˛˛) 2Chaining asynchronous File Manager calls will work°dONLNd
  463. Òˇ2
  464. ˝* 1on volumes controlled by synchronous drivers, but°dONLNd # 2Ô* .watch out: When the driver is synchronous, the°dONLNd R2"˝* 0stack frames from the system and your completion°dONLNd É#2.˜* 3routines will keep building up on the current stack°dONLNd ∑/2:fl* -until the last asynchronous call in the chain°dONLNd Â;2F˛* 4completes, or until the stack overwrites the current°dONLNd G2Rı* 0heap. You’ll need to break the asynchronous File°dONLNd KS2^˙* 1Manager call chain every few completion routines.°dONLNd ~_2j* 5A simple way to do this is to start a Time Manager or°dONLNd ¥k2v˘* 1VBL task from your File Manager call’s completion°dONLNd Êw2Ç* 5routine, and let the task start the next asynchronous°dONLNdÉ2é®* File Manager call in the chain.°dONLNd<õ#¶≥(¬AFile Sharing and AppleShare.°dONLNdXõ≥¶÷)ê Chained°dONLNdaß#≤(ŒA8asynchronous File Manager calls can fail when either the°dONLNdö≥#æ* 9Macintosh File Sharing or AppleShare 3.0 (not 3.0.1) file°dONLNd‘ø# Ù* 6server is running. The file server software intercepts°dONLNd À#÷* 9almost all calls made to the File Manager. Due to how the°dONLNdE◊#‚ˇ* 9file server keeps track of what requests it has or hasn’t°dONLNd„#Ó* :seen, there are a few situations where the file server can°dONLNd∫Ô#˙Ï* 1do the wrong thing with chained asynchronous File°dONLNdÏ˚#ˆ* 4Manager calls. To make sure the file server sees and°dONLNd!#ˆ* 3handles all chained asynchronous File Manager calls°dONLNdU#* 9correctly, use two parameter blocks for the chained calls°dONLNdè#*Á* /and switch parameter blocks at every completion°dONLNdø+#6B* routine. X8Z8"[8# [9[2"[3 [4[+ X,Z,"[,# x4x&, Palatino
  465. +Ë) +
  466. 5(è6Thanks )-to François Grieu and Lawrence D’Oliveiro for(ô6$providing some of this information.•(Ú◊    LETTERS  )$September 1993ˇáJ◊#ˇ ˇˇˇˇ#◊ 
  467. d,     Helvetica.°dONLNd%I5ç+gPGETTING°dONLNdCCSç(naSTARTED°dONLNdagqç+$WITH°dONLNd(èç(™F    QUICKDRAW°dONLNdùu≠ç+MGX0F,ÿ¶
  468. G-◊•òÄ~,˙ññˆtƒ&õˇˇˇˇˇˇÓÓÓÓÓÓ››››››ÃÃÃÃÃꪪªªª™™™™™™ôôôôôôààààààwwwwww    ffffff
  469. UUUUUU DDDDDD 333333"""""",˙G-◊•M˛v˛wááw˙áààáá˙àòààòàòà˛ò¸ô©ò©ôÛ©™˛©™˘©ô˚©˛ôò˘ô¯òà˝òà˛òàòàòàà˙áwwVgfggwggwg˝w˙xà¸xàxàx˝àâàà˚â˜ô˜öô˛öô˙ö    ôöôôâôôââô˘â àâàâààxàxàxà˛xà˛xà˛xàx˙wNvv˝wááw˜á˛à˛á˚àòà˘òôò˝ô©ô©ô˙©™©™Ù©ô©ô©ô©©¸ôò˛ôòô˙òà¸òààò˝àò¸à˚áwD˛fgg˚wxwwÙxàxx˘à˘â˜ô˘ö™¸öôöôö¸ôââô¯âààâ˝à˛xààxàà˛xà˘x¸wgg]˛vww˙á¸àááààá˛àáòàòà˛òà˛òàòò˚ô©ôô˝©ô˝©™©˛™∫˝™¯©ô˛©˝ôò˛ôòòô˚òàòààòà˛ò˛àòò˘à˝áwOff˝g˝wÔx˚àxàx˛à¸â˚ôö˝ô˚ö˝™ö™öô¸öôöôö˝ôâô˚â àâàâààxàxàxàx˛àx˛àxà˚x˝wgfgvv˛w¸áààá¸àáàáàáàáààòàòàò˛àò˛àòàòòôò˝ô˛©ô˛©ô˛©™™©∫©™©™˚©™¸©ô©˚ôòô˚òà˛òá˝àòòààòò˘àáwááww3f˛g˛wÓx˚àx¯à¸â˜ô˝ö™ö™˚öô˛öôö˚ô˜âàâàâàÍx˛wgfMvww˝á˚àò˜àòàà˘òàòàòàòò¸ôòôô˙©ö©©™∫™©˛™©™˛©™™˘©ô®˙ô˙ò¯àòàòààò˙à˝áwb˝gww˚x˙à    xààxxâàyày˝àxàx˝àâà˚â¯ô˝ö
  470. ´™™ö™™ö™ööô˚öôôöôôâôâôâôââàôàâàâxàxàxà˛x˛à˛xàxàxàxàx˛wgwmv˛wáá˝àòà˝òàòàòàòàòàòàòàòàòàò˛àòàòà˝òôòôòô˝©ô©©™©™∫™™˛∫™™©™∫™˝©™˛© ô©ô©©ôô©ôôòòô¸ò˘àáààò˘àáà˛áwvL˛gww˛xààxx˝àxàxààxÚàx˝à¸â¯ôöö™´©˛ö™™˛ö™ö™˚ö˛ôö˝ôââôô˝â˝àxàÌx˛wgfWvww˛á˛àıòà¯òà¸òà˚òôò¸ô©©ô©™©©ª∫©©™∫™˝∫ ™∫ªÀªª ∫™©™™˝©ôô©©˝ô¸òààò˚àòàòò˘à˝áwvfggww˝x˛àxàâ¯àx˚àâ˝àx˛à˜âôâ˝ôöö™´˝ö™ö˛™´ªª˝Ã´ª™´™™ööôöôôâôâô˝âàâ˝àxà˛xà˛xàxà˛xàxwx˛wggi˛wáw¸àòòà˛òà˛òà˛òà˛òá˛òàòà¸òà¸òôôò©˝ô©©ö∫™™©™©™™∫ªºÀÃÃ˛›‹‹€ÃÀ∫˚©ô©˝ôòô˚òààò˚àòò¸à˝áwáwávC˛gww˛xÛàâàâààâÙà˜â¸ôõ™õ™ö™™˛´ºÃª˝Õ˛ºÃÃÕê™ö˚ô¸â˚à˜xà˝x˙wggfTwwáá˛àÛòôòòôòôòôòò˚ô˛©    ª∫©™∫ª∫ª€º˛‹À›€ÃÓ˝›˛ÌÓ‹∫∫˚©ô©˛ôòô˝ò˛à˛òà˝òààáà¯áviwgw¸x¸à˛âàâà˛âà˚â˛àâàâ˘àââà¸â˛ôöö˛™õª´ª˛ÃÕ˛ºÃÃÕÕfifiÌ˝ÓÀ´ööôö˛ôââô˝âàâààxàxàx˛à˛xàxwwxwxww˝gV˝áààÙòôòô˛òôòôÙòôòôò˘ô©™™˛∫ ´ÀÀ‹›˛‹€ÃÀÃÕ‹ÀÀÃÌ‹›Ì›€∫™¸©ô©ôôòô˘òàòà˝ò˛à˚á˛wvvbww˝x˚àÚâàââàâ˘à˛âàà˛âôââôâôö™ªºº∫´ººÕÕÃúºÃú´º∫º˛Ã›Õ՛ê™öôôöôââô˝â˛àâààxàà˛xàxx˝wgw¸gfgá˝à˚ò˛ôòôôò˛ôò˛ôòôòôòô˙òôòôòô˛òôòôò©ôô©´ªÃ›Ì‹Ì››‹‹Ã€Ã‹Ã›Ì‹À‹‹ÕÓ˛˛Ì˛ÌÀ∫∫˝©ôôò˛ô˜òààòòàà˚á˛w˛vP¸x˝àÎâàâ˝ô´˛ÕÃÕΩfiÓfi‹ÕºªºÃÕ›ÃÀÕÕ›fi›Ô˝ÓfiÓê™™ôöôââôââàââ˛à    xààxxàxàwx¸w¸gffq˛àòà˛òàòòôòôòôòôòôòôòôòôòô˛òô˙òôòô¸ò˛ôòôºÌÓÓ˝‹Ã›‹‹ÃÌ›‹€ÃÛÛ‹›ÓÓÌÓÓ˛˛ÓÓÌÌ€∫™˛©ôôòôòô˚òààòàáàáà˝áwááw¸vQ˛xàxàà˜âôââô˛âô¯âàÛâôö´Ω‹ÕÔÓÌÕÃú՛ª´ºÃÕÕfi›ÃÕÃúºÕfi˚Ó‹´ö˛ô˚â˚à˚xwx¸w¸g˛fZ˛à˝ò˙ô˘©
  471. ôô©ôôòôòôòô¸òôò˛ôò˝ô˛©´›˛Ó˛Ì›‹˛ÀªªÀËÃÃÓ›ÓÌÏËÀ‹fiÓ¸˛˝Àπ˝©¸ô˝ò˘àáà˙áww˝v[àx˝à¸â˝ôâˆôÚâô˝â ôöö™õÕÓfi›ÓfifiÃ˛ºÃÕ‹ÃÃÕÃúÀºÕ››˛Õ›fi¸Ó À´©ôâôâôâôââ˝à¸xàxxwx˝w˛gwggfgs˛à˝ò˛ôò©ô©ô©ô©ô˛©ô©˛ô-©ô©ò©òôòôòôôòôòòôò©´ªÀº‹Õ›ÓÏÕ›Ó˛˛Ì‹›ÌÌϛӛ˝‹ÃÀ˛‹›ÓÌÌ›ÌÓ˝˛˝ ∫©©ô©˝ô˝ò˛àááààáà¸áwwááw˝v]xx˝à˝âÚôâôô˜âôââ˛ôö´ª´™¨ÕÓÕêÕÓÔÓfiÓ›fiÓ›‹Õ›Œfi˛›fi˛›Õ›˛fi˚Ó‹™ôââô˝â˝àxxwwxxwxx¸wgw˝g˛fdà¸ò˝ô˛©ô˛©ô©ô¸©ô©ô©ô©ôôòôô©ò©ôôò©™∫´∫ªª›ÌÌ›‹››˛˛ÓÓ˝˛Ì̋Ë‹ÀÃÃÌÓ˝‹›‹›Ó˙˛€©ô©ò˝ôòòàòààıá¸w˝vS˛x˛à˝âÌôıâ˛ö´ºΩfiÔfiÔÓÓÔÓÔÓÔ˛ÓfiÓÔfiÓÃÕÕ››fi›ÕººÕÕ›fifi˘ÓÀôôâô˝â ààxàxwwxwxwx¸w¸gfgfflà˛òàòòôòôô©ô©ô©ô©ô©ô©ô©˛ô©ôôòôòô˛ò    ôòôòô©©™Ã›˛˛Ó˜˛Ì››Ï›‹‹Ã˛›Ã››€À‹›ÀÕ˛˛Ó˛˛Ó˛˝ ©ôòô˝òàà˜áw˛á˝w˝vf`xxàxàà˝âÒôâôô˛âô¸âôââöö´ºÕflÔÓÔÓÔÓÔÓÔ˛ÓÔ˛Ó››Õfifi›ÃÕÕÃúΩ꺌Ãfi˝Ófifi˛Ó›©˛â˝àxàxıw˛gfg˝fVW˛à˛òôòôô˛©ô©ô˙©ô©ô©ô©¯ôòô©©ª™›fiˆ˛Ó˝˛˝ÌÌ›ÓÌÓ˛Ì‹›‹ÀÀ‹›‹À›˚˛ÓÓ˛˛€©òô¸òààıá˛w˚vfbà˛x˛à˛âÛôâ˛ô˘âô˝â ööΩ›ŒfiÓÓÔÔÓfiÔÓfiÓÓÔÓÔÓfiÕ›ºÕŒfiÓÌÕÃÃ˛ÕÓÌÓÕfi˜ÓÌ™©àâ˝àxxwxwx˛wx˛w ggwggfgfgVfeá˛à˛òôòôò©ô©ô©ô©ô©ô©ô©ô©˝ôòôòôòôòôòô©´Ã‹›ÌÓ˛Ó˛Ì›Ó˛ÓÌÌ›Ó˛˛ÓÌÓÌ‹›Ó˛˛Ó˝‹Ã›Ìfi˛˛Ì‹fi˜˛€ôô˝ò¸à˘á¸w˚vfTxwxx˝à¸â˜ôâôÛâäõ›ÃÃÕ›ÓÔfiÔfiÔÓ›Õ›˛fiÓÓÔÓÓ›Õ›ÃÕ››Ó‹ÕÃªΩ›fi˛Ó›fifi¯Ó©âàâ˝à˛x˘w˛g˙fVV[˛áàà¸ò˝ô˛©    ô©ô©ô©ô©ò©¸ôòòôô˛ò™››‹À›Ó˘˛˝Ó˛ÌÓ˝ÌÓÓÏ›ÌÌÛ›‹ÀÕÓ˛Ó˛˛Ó˛˛Ó¯˛Í©˚ò˛à˘á˛w˚vfvf^ww˛x˛à¯âôâ˛ôââôˆâ    àxö≠››‹ºfiœ˛ÔÓÔÔÓ››ÕÕfiÓ›ÔfiÓÌ››fiÕÓfiÔÓÓÃΩfiÓÓÔÚÓ‹©â˝àxàxàxx˝wgwgwggfg˚fgw˝áòàòàôòôòôòôòôò˛ôò˛ôòôòôòô¸òô´Ófi‹Ã‹Õ˙˛ÓÌ‹›ÓÏ‹ÃÓ˛˛
  472. ÏÏ›Ìfi˛›Ớӯ˛Ó˛˛ÓÓ˛˛Ó˛Ì∫˝ò˝àáà˚áwwvw˘vfR˛w˝x˛àâà˘âôÒâöæ›fiººÕfi˝ÓÔÓÔÓÔÓÓ‹ºÃÕÕÓÓÔ˛Ó    Ô›fifi›ÃÕÕfifi¸Ó›fiˆÓ ˙à¸x˝w˝g˛fg˛fVV\ááàá˛à˚òô˝òôò©ôôò˙ôòô˝ò ™ÓÌ‹ÀÃÃÌ›˛˛Ó¸˛ ÌÏ›‹‹›ÓÌÌÓ˝Ó˛˛Ì‹˝›    ÌÌÓ˛ÌÓ˛ÏÃÓ˜˛Ω˙òàà˚á˝w˘vf^ww¸xààâ˝à˛âàÓâÆÓÃÕººÕfiÔ˛ÓÔÔÓÓ››ÕÓÓ›fi››flÓfiÓÓÕ˝fi ›fi›ÃfiÕÓ››fi›Œ˛fi¯Ó©ââ˝àxàà˛x˚w
  473. ggfgfgfgVfo˝á˛àòàòàòàòàôàòòôòôòôòôòôòôòô˛òóõfi‹‹˛Ã ÌÌ˛ÌÓÌÓ˛˛ÓÌ˲Ì‹fi˛Ì›Ì›ÌÏ‹›ÀÀË‹›‹Ó‹›Ì››‹›˛Ï›˚˛ӲΩ˝òà˛òàà˚á˝w˚vfTw˚xˆàÛâ
  474. àâàyùÓÃÕÀÃÕ˛›ÓŒfiÓfiÓ››ÕÃÌúºfifi›ºÃÕ›ÃÃÕÕúÃΩÕΩ˛Õ›Õfi›ÓÓÕŒ˘Ó©â˙à˛x˚w˛g˚fV[á¸à˛òàıòôòôò¸ô˝ò ôΩ̪̋ºÃ››fi˛˝ÓỚ̋‹ÀË‹∫ºÃ‹›‹‹Ã‹˛›ÌÀÃÀƯ̂›ÓÌÓ˝ÓÓˆ˛ή˙ò˝à˚áwvw¸vf\˛xw˛xÙàâàıâ,àzæfifiÀªººÃºfiÔÓÓ›Õú¨À´™™¨ªªΩúꪺÕÕΩÕÕÀ´ººŒfi˙ÓfiˆÓ∫˛àâ˝àxàxxwx˝wgg˛fgVVmwááàáààòàòàòàòàòà˛òà˜òô˛ò    ™››ÏêÀ´›˛Ó˛˛ÌÌ€ ö™©º‹Ã›‹Ã›Ã‹ÀÃÛ‹ÀÀªÀÀÃÃfiÓ˝˛Ó˛Ì˛Ó˛˛Ó˛Ó˛Ó˛Î®à˝ò˚à¸áwáw¸vfUw˙xˆàâàà˜â/ààzú›fiªª´ºôΩºº›flÓÔÓӛÙ´™öºÃºŒ‹Õ‹ÃÕÕÃÕÕªºªºÕÕ›Õfi˚ÓÌıÓπ˚à˘xwxw˛g˛fVVXàá¸à˜òà˝òôòôòôòô¸ò ô≠›ÃÀ∫ª∫ªÀªÃÓ¸˛Ï€ÃÀÀ∫ªÀÀºfiÏ›‹ÓÏ‹››Îª º‹›‹‹Ó˙˛˝Ó˜˛Í˙ò˙à˝áw¸vfYw˚xÛà¯â˛àââ≠€Ωºº∫¨∫ö¨Õ›fi˛Ô ÓÓÕº‹ÕÃÃ´Ωªº˛ÕŒ›ÃºÕÀ™ªººΩ›ÕÕÛÓfi˝ÓÌôàâààxàxxàâxàxàww˝g˝fgáàá˝à    òàòàòàòàòà˝òà˛òôòô¸òôô‹∫€Ω‹ªπò©ºfiÓ¸˛ÓÌ‹‹››‹€ÀÃÀªÃÀÀÃÀÀÃÃ˛À‹ÓÓ˛˝fiÓı˛Ó˛Ó˛Ó˝…ô˝ò˘àáàááÜw¸v`w¸xàxàxıàâàâàâàâàâ˛àãÃΩ››Ã∫àxõΩflÓÔÓÔÓÔfi›ÏÕÕ›Õ›º˛ÃÕêúúúÃÃÀΩfi˝ÓfiÓ⁄ââ˛à˛xà˝x˝wgg˝fVdáá˛àáàòàà˛òà˘òô¸òô˛òàôΩ›Ì›ÏÀ™™´ÀÃ˝˝˛Ó˛Ó˝Ì›ÏÕ˛Ì‹Ã‹‹Ã›€˛À    ÃËË›‹ÕÓÓ˛˛ÌÙ˛Ó˛˛Î©ô˘òàòà¸áw¸v`w¯xàxx¸ày˛à˚â˝àâäfifiÕfl‹ªÃª™¨Œfi˛ÔÓfiÓfiÌÌ‹ÕÕfiÓÓfiÕúºfiÕÃÀºÃÕÀΩÕ›Õfifi˝ÓfiÚÓÌô˝àâ˝àxàxx˝wgg˝fvwááàáàá˛à
  475. óòáòáòààòòà˛ò-àòòôàòàòàõÓ˛›˛ÀÕ ∫´Õ›Ó›Ó˛˛¸˝‹ÓÓ‹Õ˝ÏÓ˛Ó˛Ì‹ÀÀÃfiÏ˝‹€Ã››Ó˛Ó˛˛Ó˛˛Ó˛˛    Ó˛Ó˛Ó˛Ó˛Ì©˚òà˛òà˛á˛w˚vWwwÚxàx¸àâààâ˝à0xúflÌfiÌΩº´™ãΩfiÔÓÔÓÔÌ›Ãæfi›ÕÓfiÕfifiÓÓÕêÕÛflÌ›ÕÕÃÕ›ÕfifiÌÓ…ââ˝à¸x˝w˛g˛fgVP˝á˘àòàòà˛òàˆòàò≠˛ÓÓÌ›⁄ òª›Ó˚˛›€¨Ì›˝Ì›ÓÌ‹‹ÀªÀÌ‹fi››Ì‹›‹ÓÌÓÏ˛Íòô˚ò˛à˛á˛w¸vfe˝w˝xà˛xà˛xà˛xàà˛âààââàâàyæfiÓÔÌÓºò些ÔÓÔÓ˛Ô›ªõÕÌflfi›ºÕ››ººªªºΩ›ÕÃÕfiÕÕflÓÔ›ÏÓÌôàâ˝àxàxà˝w˝gfgVflwáw˛àáààòààáò˛àòá˛òà¸òà˛ò äÌÓfi˛Ì¸ ©´ÕÓ¸˛˝˛›…∫ÃfiÌÓÓ€ªfi‹ÀªºÀÛ›ÏÀÀÕ‹‹Ã˛˛˝Ó¯˛ Ó˛Ó˛Ó˛Ó˛Ó˛Ó˝π¸ò˝à˛á˛w¸vff^g˛w¯xà˛xààxàâàxàâàâàâààùÔfiÔÓÔ›ªõ´ŒÓÓÔ˛ÓÛÕÀ™¨ΩÓŒÓ̪ºfi ´´ÕÀ˛Õººª˛ÃŒÓÓfiÏÓ∏àxàà¸x˛w˝g¸fViwwáwá˚àòòà˛òàòàòà˛òàô˛òôôæ˝fi˛˛˝€ º›Ó˝˛˝Ã‹Ã ©ÃÀfi›Ó˛ÏÃ›Ì˛À ›‹‹fiÏÀ∫ÃÃΩÃÓÛ˛Ó˛˛Ó˛˛Ó»òàò¸à˛áww˙vffZgww˜x˛àx¸à8âàâàâàâààäfiÕÔÔflÓÓêÃÔÓÔÓԛô´ö™öºÀΩ‹fiÓfi‹ŒŒ›ÀºÃÕÃŒÌÕººΩ‹ÕæÍÓ»˝x˘w
  476. ggfgffVfVfnwáwááàáàáàáòàòàòà˙òàòòôòòô´›Ó˛˛Ó˛ÌÀºÕ˝˛"˝‹πáwÜwò´ÃÀÃfi˛ÌÌ›˝›Ì‹›‹››ÌÌÀ €fi‹‹ÓÓ˛˛Ó˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛È¯á˛w˚v˛feQggw˘xˆà˝â'àââàâùÓÔÓÔÓÔÓªªŒÓÔÓÓÃ∫áfVfVw{ººªºfi‹ÕŒ›ÕÃ˛Õ
  477. ºÃΩê¨ΩΩÓ›fiÎÓÎá˙w˝g¸f˝VUNw˛á˚àòàıò¸ôòôŒ˚˛ϪªÌ˛˛Ï ávdSTDfzª‹ÀªfiÌÛ̋‹››‹€˛Ã ´À›ÌÌÓβ˝ó˚á˛w˙v˝fe^wwxwxxà˛x˚àâàâà¯âàâœ˛Ô+ÓÔÔÀº¨ŒÔÓÌÀòfED3##EH´Ãê≠ÌÕΩÕ›ÃÛ›ÕúÃÀ™ªÕ›fiÈÓ®¸wggfgfgfgfgVfVfVVnw˛á˛à˛òàòàòà˚òôòôòôòôòòõÓ˛˛Ì˛˛˝Ã ºfi˝ÓÏ∏vdC4˛2EEöÃÃÀÀfi‹€‹‹Ã€€˛›    €ÃÃ∫ºÃ›fi˝Ó˚˛Ó˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó»˝áww˘v˝f˛eWww˝xààxx˚àÛâ™fl˛Ó-ÔÓÌÃÀúœÓ›ÀóUD3$""#45Z¨ÀºΩÕ‹ÃÕÃºÃªΩŒŒ›Œ›ÃΩÕ›ŒÓŒÎÓπxxw˝g¸fVf˝VUVUs˛áààá˛òà˚ò    ôòôòôòôô©ò˛ô©öÌ˛˛.Ó˛¸‹À´fi˛˝ ÜTC332233DW´ÃËÌËÃÕªÀÃÛ›ÏÌ˛Ì‹Ófi›ÓÓÌ˛˛Ó˛˝Ó˝˛Ó˛˛Ó˛˛Ó˛…àá˛w¸vfv˝f¸ejw¸x˛àâ˛àâààâà˙âô˛âôåflÔÓ˛Ô ››ªõŒÔ‹©eD32#""#$3EãºΩ››ÃÀºÃÀº¨ÃÕ˛›ŒÔ›ÓÓÕfi››˛Ó›ÓÓfiÛÓ…w˝gfgff¸VfVVUVUUnáàáààòàòà˚òô˛òôò¸ôò©ôòõ˛Ó˝˛
  478. Ì› ∫fiÌ€ßeC3¸2533Dy™ºÕ›Ï€ÀËÀ‹ÃË›ÌÌ›˝Ó˛ÌÕ‹›ÌÓÓÌÓÓ˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛ÓŸáww¸v˘fU˝eV˚x˚àıâ%ôââôââúfiÓÔÓÔÓfi›ª™ø›∫ÜU3"2""#"#35Gã´ºÕ›˛ºΩÃºÃºÃ˝Õ ŒfiÓfi›ÃΩÕfiÓ‹fifiÚÓŸwfgg˝f˘V¸U^áààáà¸òàòôòô˛ò˝ô©òôô©˛ô¨˚˛    ÌÌÃÀÕÌ…vTC˛2"˛2 CDUy©ª‹›ÏÀ‹Ã˛‹ÀÀË‹€Ãfi˛Ó˛ÌÛ›˛˝fiÒ˛˙á˙v˝f¯ee¸x˛àâà˙âà¸â    ôôââôôâùÓÔ˝ÓfifiºÃΩ›πe4#"#"˛" 3#DX™õºÕfiÃΩÕÕfi›ÃºÃºÃ€ºŒÓÔÓÔ›Õ›flÓfiÒÓÌw˝gfgVfVf˝VUVUVUVqáàáààòàòòôòôòôòôòôòôòôò©˛ô®òò≠Ó˛Ó˛˛ÓÌ˝››‹€ßdC22"2"˝23DWòö∫Û˝‹‹Ì‹›Ì‹‹À€‹‹Ã˛Ó˛ÓÓÌ›Ó˛Ì˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˝ñ˚v¸f¯eU˝x˚àâ2ôâäÕflfifiÓÓfifiÓfifiÕªóT3""#""##4Ewô´õÃŒÏÕfiÓÕÕÃÕÕÃÃΩ›fi˛Ó›ŒfifiÓfiÓß˝fgVfVfVV¯Umàáààòà˛òà˝òôòôòôòôòôò©ô©òòö›˛˛Ó˛ÌÓÌ˛Ó˛‹ ñT˛2˛"322˛3 Dvy∫∫À›Ï›˛ÓÌ‹˛›    ‹››ÏÓ˛˛˝Ïfi˜˛Ó˛˛Ó˛˛Ó˛Ó»¸v˝f˙eU˛eY˝xààâ¸àâäflÔÓÔÔfifi›ÔÔÌÃ∫áT3˛""""˛#
  479. 4FW™´ºΩÕΩflÓ˝Õ˛›Õ›fi˛ÓÃæfiÌÓ fgffVfVfVfVVUV˛UVUVc wàáòààòòàòòôòúÓÓ˛˛ÓÓÌ˛˛Ì€πÜTC""!˛"2""33CVVõ´ÃÕÀΩ›Óϛ̛ÓÌ›ÌÌ˝ÓÏ›˛Ó˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Í˚v˛fˆeR˛x˚àâàâàûÔfifiÔ›fifi›fiÓfiéfD"""˛""##36Uj∫ºÕ‹ΩŒ›ÕÕfi›fiÓÓfiÓfi˛ÓÌfiÏÓ‹v˝f˚VUVV˚U[˝àòàòàô˛òô¯òôòôòôòòŒ˛Ìfi˛˛ÌÓÏÓfiÌ€∏uT221¸"2"2235dXÀÃÃÌÛ̋‹˝Ó˝˝˛Ó˛˛ÌÏ˛Ó˚ñ˝v¸fefef˚eT˛x˛àâà˝âàıâààâäflÔ›fiÔÔ€Œ›flÌ›ÀôU3""¸"""##$U6õ¨ÕfiÕ›ŒÃΩflÓfl‚ÓÎñg˝fVfVfVfUUVVUVUU[áààòà˘òôòôıòõ˛˛Ì›ÌÏ∫ÕfiÓ˝‹€ßdB22˛"!˝"˛24VD{À›ÓÌ˛‹ºfi˛fi˛˛ÓÛ˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛˚ßvvfvv˙f˙eP˛x˚àâàâàââà¯â/ààâúflÓ‹Ω›ÀâŒfifi̺ÀóU2#"""""##EDHºÃfi››ÃÕÀÕÓfi‚ÓÏò˚f¸Vf˛V˝USàà˘òô˛òô˛òô˛òô¸òúÓ˛ŸÃ€π¨›Ì››ÃÀ¶S2""!˜"3CdUú‹ÕÌfiÏÕÀ›ÓÏ˛Ó˛˛Ó˛˛Ó˛Ó¸ò˚v˘f¸eR
  480. xxàxààâààâàÙâ˝àúfiÓ©˛º    Õfi›Ãô™ÜC"¸˛""""#3D5[ÕÕfi››ªªÕfi·ÓÌòwggfg˝fVf˛VfUVUUnááàòáàà˝òôòòà˝òô˝òàòààö˛˝öªÃÛÌÏ…πòßtC"2""!˝"22""223DDVº››˝Ì‹ÀÕ›˝˛Ó˛˛Ó˛˛Ó˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ì∑¯v¸f¸eE˛x˙àÛâ˛àyåÔÏ{¨ ¨fiÀ™vvgUD#"""¸"""##54EkÕ››fiÀª≠Ãfi‚ÓÌò˚g˝f˚VUVUT
  481. ààòàòàòàòòô˛òôòôòôòô˝òàòòù˛ÍõÀ»â ÜeDTTCC22˚"2"2"¸2 4TTfº‹ÏÕÏÀªÃÕ‚˛¸óá˛w˙v¸f˛eU˛x˛àâàââààÙâààxùÔ»úîgfV3#33##"#"˛#˚"##3DEEjΩfiÕÕÀöººfi„Ó
  482. Ìáxgwgwgwfg˛fVVfVfVf_    áàxòàòàòàà˛òôıòàòõ˛»´ÃßeTC33C3¸2˝"˝2"˝233DDUgõ›Ï‹Àπ¨ Õ¸˛Ó˜˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛ÌóÜáwwvw¸v˙feT˛x˘àâà˛âà¯âààçÓòºÀ®UD3##3""#˛"""##˛"##"#44EVh¨fiºº™öÀ¨fi„Óówwgw˝g˝fVf˛VfV`àà˛òàòàòà˝òô˛òôòôòô˝ò àΩ˝πÀ∑dDC33˙2"22"˘2˛3CDTefäºÏ òàºÀ›Ó˛˛˝fiı˛Ó˛˛Ó˛˛Ó˛˛˝ß˚áw˜vffRxxˆà˛âà˛âà˝â
  483. ààâŒÌ∫ΩÃóT4¸#¯"##""˛#"˛#34EEUhöΩÕÀà二fi˛ÓfiËÓó˝wx˚gfg˛fgVfm˛à˛òàò˛àòà˚òô˚òáöfi˝∫›€¶TD3323˝2$"2"2"223"223232323CDDTfyöª∫òà™ÕÌÓÓ˛˛Ó˛˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ì∑ááw˛á˝w¯vPxıàââàà˘âààäfiÓ¨ÕÃñD433##˝"#˚"#"##3˚#344EEgyôâwgxäºÕfifiËÓ›©x˚w˛gfgfgfg˛fCòàòà˛òàòàòõ˛˝º›‹ñTCC33Ù232˙3CCDDTUewòávvfwâ´Ã›ÓͲÓÏ©˙á˘w˝vaxàx¯àâàâ˝àâà˛â ààâúflÌ≠›ÃÜE33˝#"#˝""¸#3#3˛#33˛4DEEVfvUVUVgyõ´ΩfifiÔÏÓ⁄òàxxwx˝w
  484. ggwggwggfghàòàòàòàòàòàòòôà˛òàà˝òàòò¨Ó˝ÃÌ‹ÖDSC323˝2"˙2¸3C3C3˝C(DDTTfeTUeeVwàô™Ã‹‹››˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Ó˛Èòˆá˙wv\x˝àxÚà˛â àââªfiÌΩfiÃuD34¸# "#"#"#"#"#"3˛#˝3433˝4˝EVUEVggxxä´´ººŒ˝ÓfifiıÓ⁄àwxxwx˙wgwgw˛gf ààòàòàòàòàòà˛òàòàòòôàòòààô™ÓÏ››€uTDC23C3˜2˚3¸C33CCDDTTUTeUUeffwwàô©∫ªÃ›Ó˛ÌÌfi˛Ó˛˛Ó˛˛Ó˛ÓÍóáàˆá¸wvZ˛xÔàâàâààâãfl›Œfi€eD43##33˛#"˛#""˝#˝3434˛34344D˚EUVfggxàââö´ÃÕ›˛Õ˝Ófi˙Ó⁄áxwxwá˘w¸gfiááàò˛àòààòò˛àòàòàòàà˛òàòäÓÌfiÌÎdDDC323C3ı23C˝3CC3˝C˛DTDTTUUevfwwááôô™ÀˋÛ˛Ó    ˛Ó˛Ó˛Ó˛Ó˛Íˆáwá¸wvfV˛xÓàâ˝àãÓÕŒfiÎeD43"##3#"˝#""##"˝#3$4˛3#¸4D5DDEUUVfVggwxâä™´ººÃÃÕfiˆÓ⁄àxˆw˝gfgf` àáààòàòàòàòà˛òàòà˛òà¸òã˛ÏÓ˝ÎeTCC2233˛23¯2˝3C3˛C3˚CTDDTUUeffvwáàòô™∫∫À˛ÃÓÓ¯˛Ó€ò˜á˝w¸vX¸xÚàâ˛à âàà|Ô›ÓÓÎUD43˜#"˚#3#˝34˛3˛4344DD5DEEVVWggwxxâö´´˝ºfi̘Ó€òxwx˚wgx˛gwggfgbááàá˛àóàòàòàòàòàòàòàòàòàòòù˛›˛˛ÍdCSC˛23323¯2˛3¸C3˜C!DDTUeffvwááàà™™∫ªÃÀÛ˛Ó˛Ó˛Ó˛Ó˛Ó˛Íòˆá˛w¸vY˝xàxxàâààùÓfiÓÓÍUD43#"##3˝#"˚#3##˛3#33#3433¸4D5EEVfVggwwyyö™´´˛ºÕˆÓÎáx˙w˚gfg˛feàáàáá˛à
  485. òàòàòàòàóàò˛à˛òàòù˝Ì˛ÓÍTTDC32˝32C2¯3C33C˙3˝CDDTDUUfefvwááààô™∫ªªÃÃ›Ó˛˛Ó˛˛Ó˛Ó˚ó˙á˚w˚vew˙x˛àx˝à˛xàxx¸à
  486. çÓfiÔÓÈDD443¸433##33#3#˛34˛3#$33#3344334DDEEU˛Vfg˛w    xâö™´ªººÕfi˜ÓÏóx˚w˙gffgfgew˝á
  487. ààòáààòáàáà¸á˚à ú˛Ó˛˛¯TCDCCU˛T˚C3¸C3C˛3C˛3˚C˝DTT˝efvvwwàôö∫ªªÀÀÃÓÓ˛Ó˛Ó˛Ó˛Ó˛Ï®˚ávwvwwvw˚v_ww˘xàÙxàxàçÓflfiÓÿDD44EVfVVUD3434344˝3433˛#334343˝4EDEE¸Vfgghàâöö´˛ºÕfi˜ÓÏòwwg˛wgw˚g¸fc˝áà˛áààááó˛áà˝á˝àáòÆ˝˛ÊTTDDU˛wvveTTˆC3C3C3˛C    DDCDDTDTTU˛e
  488. ffvvwxàô©™ª˛ÀÕÓ¯˛Óή˚áwwáww˘vWww˘xàÒxÆflÔÔÓ÷DEDFwxhâààffUD443˚4343#43˝4˚D˛E˛U˛Vggwxâöö´˝ºfi˜Ó⁄àxwx˝w˛gw˝gfgfgdwwáàáà˛áàˆáàáààòáÆÓ˛˛ÂUTUwxóòòôòôòÜeT˝DTTDD˘CD˛TD˝TU˛e˛f˛váàô©∫ªÃÀÀÃÓÓ˛Ó˛Ó˛Ó˛Ó˛¸à˝áܢw˚vS˝wÏxàxûfiÔÓÔ≈EDWâàxöôôö™òôàgUDDEE˛D4433˛4DDEDED˝EUVVfgfggwwxxôö´´˝ºfi˜Ó‹óÚg˝fgáw˘áààááàáàáà˛áàáàáà≠˝˛‘TUâ©∫©à⪀  ™∫óvfeDU˝T˛CDCDDU¸T˛Uefwx˛à    ôòáàô©™∫ºÀ˛Ãfi˛˛Ó˛˛Ó˛Ó¸òáÙw¸v\g˝wÎxúÔÓÔÔµDWäõ™ôàäö¨ºÃÕÀ´ªòܲUEED˛4D4˛E˝UEFUVgxâäôâö´öòàôö™´˝ºÃfi˜ÓÌá˛gw˚gw˝gfgfglww¯áàááwà˛áà˛áà˛áõÓ˛˛§Th™™©àô©ô™ÃË‹›Ã ßveeTTDTDD˛TUU˛eUeefwàòô∫™∫ªª ∫òô©™ª˝ÀÃfiÓ˛Ó˛Ó˛Ó˛Ó˛Ï߲v˜w˚v[¸wxxw˛xwÙxwxãfi˛Ó Ñ5ZöôàhxvfW¨Õ˛›ÃÙàvfUE˛DED4E˚VWgxâ´´¨ºÕºªºÃªôäö´´¸ºŒ˜ÓÌóÛgfgffVl˝áàáà˛áàáà˙áà˛á&àáàöÓ˛˛˝ÑUi™òòveUTUg´››ÓÌ‹ÀòávfeTTUUTUU˛fvwâ©™™Ã‹‹˛Ì‹‹Ã‹› ™∫ÀªÃÀÃÀÃfi¯˛Ó˝óvwv˚wv˛w˚vagw˘x˛w˛xwxw˝xw˛x zŒÔÔÌd4iàffUE˛D EXõºÕfi›Ã™òwfU˚EVWfwàô´ºÃÕú՛՛ÕÕ›ÃÕ‹ª´˙ºŒˆÓß˚gw˙gwggffdww˛áàÏáâÕ˛˛˝tDy®uUTDDTCDfwöºÃÌ‹À∫ôvuUTT˛U
  489. fwwàöªÀ‹›Ï›˝ÓÌ€‹Õ̋̋ÀªÀÃÃÀÀÃ›Ó˛Ó˛Ó˛Ó˛Ó˛Óÿ˚v¸wvvw¸vZ¸wxwxxwwx˘w˙x
  490. y≠fiÓÌTDWâwV˝D.44EWxäõºÃªªôvVUEEUVEVgxôõ¨ÕfifiÓ›flfi›Ãº´´ΩÕÕfiÌúºÃ˝ºŒˆÓ®Úg˝fqww˝áàáà¸áà¸áàáà˛á àà¨Ì˛˝dTgôñe˛UTUUffàô©™ºÀªπóveTTUeffx♺››Ó˛˛Ì‹ ©®ô™º›ÌÌ˛ÏÃÀ¸ÃÕ˛˛Ó˛˛Ó˛Ó˝®˛v˙wv˛w˝vfdwwxxwxxwxwxwwx˝wxxww˚xãÕÔ‹DDVxw˚Vggxâööôö´´ôàfU˛EfVgyö´Ω›˛Ófi›ª™àggxõºΩÕfiÓÌÃ˚ºÕ˜ÓÌàxwÙgfgfflw˛áwáwà˝áwááàwˆáâÃÓÏSTVwávfvwòô™À‹›‹∫π˝© òÜeTUeffwâ™ºÕ˛Ì‹€À©ávfvxô™ª‹ÓÓÌ‹˛ÃÀ˛Ã Ó˛Ó˛Ó˛Ó˛Ó˛Ì∑v˛wv¯w¸vd˝xw˙xw˛xwwxwxwxxw˝xúfiÏD45gffgä¨ÕfiflÔÔÓ››À™öôôàv˛EVVWyö´ºÕÕÃê∫ôwffVVgxä´ºÕ››Ãúºª˛ºfi¯ÓÌ®Òg˛fpááàáà˛áàáàáàáà¸áà˙á àãfiÎTDEfvwöÕÓ˛˛ÏÕ˛ÏÛ ©©òáuTTUefwô™À˛‹ÃÀª©®ávfvfwx™∫ÀÃfiÌ‹€ÃÃÀÀÃÃfi˘˛Ó˝∏wwáwáv˛wá¸w˝vhxwwıxw˛x˛w˛xw˝x$Œ⁄D4EEVi≠fiÔ›Ωfi€ùÔÓúÙ©àwVD4EEVgâ´ºÃÕ¸ºÙòwgwxyö´ºΩ›fiպúºªººfi¯ÓÌòh˝wgg˝w˛gwggfgn¸áà˛áà˛áà˛áàˆávæÍCDDUUä›ÌÌô›˛Ó˛˝‹Àà©òvT˛CTfwâ´˝ÃÀ›Ì‹ÀºÃ ˛ò    ô™ªÃ‹››‹‹€˝À‹fi˛Ó˛Ó˛Ó˛Ó˛Ì®w¸áwwá˝wáw˝vYÏxw˝xwxxuùÿD˛4FåÃêöhÕfiÔfi‹´Ã´™ôàeD344DEhâ´º˛ÃÕ›ªö´ΩÕÓ›À™™´ººÕÕ››ÃººªªºÃŒ¯ÓÌòıw¸gffrááà˛áà˛áà˙áà˛áà˛á%àáátûÁSDTTV™™ßóvfΩ›ÌÌ⁄à¨À©®ÜuC223DUwôª˛‹›˝ ∫ºÌπù˛˛Ì€ÀÃË››Ì‹ÃªÀÀÃÃfi˛˛Ó˛Ó˛Ó˛Ó¸ò˜áwá˝w˛vW‰x5dn÷D4EWxôwfUEFXä¨Ã∏hö´ààfU3#"44EWä¨ÕÃÕÕÀªºÃÕ©ûfiÓÓÔ›ÃºÃ˝Õú˛ªººŒ¯ÓÌ©àxx¯wxwwggff[Âá-às\’DC3DUfeeTCDTDTVvwôàñfeTC33CCDgôº›‹‹€ªÃ⁄áæ›˛Ó˝˛˛Ì˙‹˛ÀªÀÃfi˛˛Ó˛¸Ó…˚áw˛áwwááww˛vQ‰x,C8•D344DUUD3435DEVfVgxuEDD3#4435WäΩÃêõΩÀÜEçfi˛Ó
  491. ‹ŒÓÓÌÃÕ›ÕÃÃ˝ªººŒ˜Óπxàıw˝gfkà˛áàááà˝áàˆáà˛á óBETT3CCDDUD˛C 3EVwvwÜeTUTC˛2$3CUg™ÃÃÀßú€©vTk›ÌÌÓÀÕÓ˛Ó››‹ÃÃÀÀªÀÀÃÃfi˝˛Ó˛Ó˛Ó˛ òÙáww˛v\˜xà˙xà˜x25ED4˝34DD˝4(FfxxwVfUD3##"#$Fhõªª∫wõòfVUFx¨ÃÀö¨ÕÓfi›Õú¸ª˛ºŒ˜ÓÀòwwxx˙wxw˛gfgh¸áà˘áàááààó˘áÜ2CTDCC˛3/CCUUTUUfwàôòôóTC33223DUy´∫™πwweeUdDUevwâ´Ã›Ì›‹ÀÀ˛∫ªªÀÀÛ˛˛Ó˛Ó˛Ó˛ÓÎ∏Ùáww˛v^Ôxw¯xÜ#3ED43˛#8EDEUVVgxäö™õ™u43##""#4Fy´™öòáfVgUEE5VgVyõºº›Õꪴö´´ªººÃÕ˜Ó‹™áw˝xwwx¸w˛gfsááà˛áà˛áàáàáà˛áàáàáà˝áIàÖ"BTSC3323DUfvwàôô™∫ª ñSD2322"3Df♩©áòóvvfeTDdVegôªÃË€ ™∫™∫ªÀªÃÛ˛˛Ó˛Ó˛˛Ó˛⁄®Ûáwwvv\ıxwÚx,u#"ED33#3"#5gyâöö™´º∫v3#33##""#4WâöôâwyöòxgfU˛EVWâ´ººÃªª˛ö´´ªººÃÕ˙ÓfiÓÓ∫©à¯x¸wggfdwÁáàÑ3"USC33˛24wô™ªªÀ∫ßeC2332˛322Dfòôòávwòô©òávvfvfâ™™©™∫˝©™™ªª˛Ã ‹˛Ó˛Ó˛ÓÓÌ˛Ó…ò˛à˝áàà˝áwáwvvVÂxt#UD343#3##$EWwgfUD3""˘##4VyäàgfVgwäöôààxây´´™ôöââàâôöö´ªººÕÕ˙Ó›ÓÓ©â˛à˙xwx˝wgfh˝áà˛áàáàÙáà˛áÑ3"eTCDCC2"!""33CC3ˆ2 CDfôôñveeffw˛™©©™ª ∫©∫®˛àòô©™ªÀÀË›ÓÓ˛˛Ó˛ÓÌ˛˝®ôóò¸àáàà˝áwávv_˜x˛wÚxt3UD˛43"¸#""#""˝"##""35WââvfUEEVVhâö™´´ª˛´™âxxà˛â™´ªºÃ˛Õ fiÓfifiÓÓŒÓÓπâàâ˚à˝x˛w˛g`Îáà¸á%ÑB"eTTSCC2!"!"!""212""22"233"23Egôòvee˝TUfà©™∫ªªπávwáààôô©™ªÀÃË‹›Ó˛ÌÓ˝fi˛Ì∏¯òàà¸áwvv]˜xwx
  492. t3UDD433#"˛"˝˚"#"#"#4EhôàfUU4D4D4DFgâô™™òàwwgx˛âöö´˛º˛Õ    ÓÓfi›Ó›æÓÌ©˘à˛xàx˛wgffqááà˛áà˛áà˛áà¸áà˙á Ö2"dTDDCC22!¸"!˝"˛232323DVy©óueTDCC3˝DUfvufàówááòòôô™ªÃ˛‹ ›fi˛Ó˛ÏÓ‹fiÓ˚®à¸òàòààááà˛á˛v]xxw˛xwÏx    u#EDD443#˛"˚"˛"˛#""#5FyâàfUD44334343˝4EUWxàxyââöö´ºº˛ÕŒ˛Ó›Œ‹ŒÓ⁄¯à¸x˛wgfg^Óáà˙áàÖ3"TS˝C2"2¸!˚"2233223DfàôóveT˚C3¸CDTUxàòáôô©™ªÀÃ˛‹    ÓÓ˛ÓÌËfi˝ ˛òàòàòòàóàááwááwwvvlwwxxw˛xw˛xw˚xà˙xàv4"EC˛4##""˝˝""¸##"#5WxâáwUDD3#4343#34344EVgàâàââööªºÃ˛Õfi˛Ó›ÃÃfiÌ©â¯à˛x˛wggfVgàá˝àò˛àòàáCBDT˝C22""!"˛!""2"22˛3(223EgàòáveTC3CC32C233CCTUfwàòòô©™∫ªÃ‹›‹‹Ó˛˛‹Ã‹Ó¸ò˝à˛ò˝à¸áw˛v_wÎx˛à xxáCC5D434#""˘˙#3˛#
  493. EgxwwfUD433¸#3#44EUggxààâôö´ººÃ˛Õfi˛ÓúÃÓ€ôà˛x
  494. àâàâàxxàxxw˛gffbÙáàáÛàR4D˝C22""˛!˝"233CC3C3223UvwávvT˛C233˝23CDUfvw˛áòô™ªºÃÃ˛‹
  495. fiÓ˛Ì‹À‹ÓÈòò˛àòáò¸à˛áw˛vfsww˝xw˛xw˛xà˛xààx¸à
  496. xààS#53433#˛"¸##34EU4˛3##$EggxwfUD433##3˛#344EVWg˛xââö´ººÃ˛Õ    ŒÓӛúÃÓ à¸xà˚x˛wg˛fVkwáw˚áà˛á˘à˛ò˝àòs2D˛C˝2˝"&2"2CDVveTC3C23DUvwáòòvdTCC23233C3DTUfww˛áàô™ªÀÃË‹›fi˛ÓÌÀÃÃ˛Ÿóàá˛àò˝à˝áw˝vfvwwxw˝xà˛x˝àxàâ˛àâ¸àât#5˛43#""˛"
  497. ##$EFyu3433˛#!4FfgyöôàfUD4#3#33##44FVfgwxààâ™´ºÃ˝Õ
  498. ŒÓÓ›ªºΩÓ∫âà¸xà˝x    wwxggfgffkww˙áàá˙àòàòà˙òï2D˛C˛2"2"2"33DUx∑c23CC˛2DUfvâ™πóáÜdS33C˝34DTefvwàáòô∫ªÃÃ˝‹ ›Ó˛ÏÀªŒÓ€πòá˘àáwááw˛vffsgwxxw˛xw˛x˚àx˛àâààâàâàv3E4433##˛"
  499. ##34Vh¨ñC3#˛3##4EgVy´òfgweD4344˛34DEVVgwxxââ™´ºº˝Õ ŒÓÓ꺌ÓÓÀòw˘x˝wggffVVvwwááàáá˛àòàòàò˛à˚òô˛òôóSDTCC33˝233DUgõÀ¶C33CC2"4Deffä∫ÖeewáeTD¸CDUUef˛wàô©∫ªÀÃ˛‹››˛Ì‹ªÃÓ˛Ïπáàáá˝àáà˝áw˛vfvj˛wxwxxwxx˝àx˝à˜âàC5D443˛#˛34EWzºª•3#$3#""34VVgä®fUVhxfDD¸4˛E
  500. Ufggxââö™´º˙Õ    ÃºªÃfiÓÀôàw¸xàxx˛wggwfgffo˛w¸áààá˛à¯ò ôôòòôôòcEDTCC˛3ECCDDVx´ÃÀ≈323CB233DUfw™ßeefwòñeTTDDCDDTUffwááàô™∫ªÃË‹›‹Ì‹ÃÀÃÃÓÌ…òááàá˛à˚áw˝vffqg˝w˛xwx˛àâ˛àâà˙â+àâôôtEDD433#343EEgäºÃª•3#443##4DEfhôáUUWy´òf˛D5˛D EEVVgxxàôö™´º¸Õ
  501. ÌúºÕΩÓÓ∫òà˙xàx˝wg˝fVnww˙á˝àòà˝òôô˛òôò˝ôñDUTD¸CEUfà´Ã€πï33DTCC3CTUvâ©ñeffö‹ ñeU˝TUUefvwààôô™∫ªÃ˝‹›˝‹À‹ÃŒÓ˛ ®àáàáàáà˚áw¸vfhgww˚x¸à˜âô˛âôâáEUDD3˝4EVgäºÃªàfD34DC˛4EVgy©áVgxú›ªòVU¸E UVVgwyâôöõ™ºº¸Õ
  502. ›À¨ÃªŒÓÓ∫ôà˙xwx˛wggffgffovw˛áàáá¸àòà˝òôòôò˙ôòeUT¸DTUfà´Ã‹πÜeeTETT˛D UfwöπñwwôΩÏ∫©veTUeUUeevwàòôô™™∫ªÃ˝‹›ÏÀªÀÀ˛Ó€®àá¸à˝áwáww¸vugwwxw˝xàxààâà˚âôâô˛â    ôâôâvUUD54˛EVgy¨ÃºôfUWâvUEDEEVgâõ™àxâõæ‹ôâwf˛U    VUVVghââôö˛´ªº˝ÕŒÃ˛ªΩ˛Ó™ò˛xà˝x¸w˛gfgffgw¸áààáàà˙òôò¯ô©©ïee˝T!UUfx™ÀàóuUfã⁄veUUef♪∫©ôªºÓ€®àóv˛efefvwáòô©™™ªªÃË‹›‹fi‹ÀªÀŒ˛Ó˝®ò¸à˚á¸w˝vqxww˝x¸à˛âà˝âôâôâ˛ô âöôöÜfVUEUEVVgâõºÕ™áeUViΩßgffghä´˛ºÃÃfiÓ òwxf˝Vfggwxâôö˝´ºÃ˝Õ
  503. Œ‹ÃªªfiÓÓÏòà˛xà˝x¸wggw˝glw˛á¸à˛òà˝ò˚ô¸©!ô©ôñfeeUeeffwôªÃ‹πÜeUegö…àÜvwô∫ÃÛ˛Ó˛˝ óááÜfeefvwwààô©™∫∫ªªÀÃ˛‹›fiÏ€ÀºÓÓ˛È®ààá˝à˚á˝wvwvvvwxw˝x˝àâàâàâàââôâôâôâôô˛öôñff˝Vfgâö´ΩÀôvfUUWy´ââàyõºÃŒÓfi˛Ó›ªòwg˛f
  504. Vggwgââöö´´˛ª
  505. ºÃÃÕÃÕÕúª≠˛ÓŸàxààxxà˝x˝wgw¸glwáá˚à¯ò˛ô˜©¶ffvffvwàô´Ã›€®óueefâ™∫©©™ª‹Õ˛Ó˛˛˝Ï ®ávw˛vwwáàòô™ª∫ÀªÀÀÃÛ˛‹ Ì‹‹ ŒÓ˛Ó»òàà˛òàà˛áàááwá˛wáwwk˝x˙àââà˝âôâ˝ôöô˛öôöñgfgfgwyâõºÃ›ÀôáfVUVhö¨ª´ªºΩfi¸Ó›Ã∫ôàwgwggwxxââöö´´ªª˛º¸Õ›Ãúfi˛Ó©âààâ˝à˝x¸wggwwgfw˛àá˝à˝ò    ôôòòôô©ô©ô˘©¶vv˛wàà™ªÃ‹ÏÀπóveUUwà™À˛ÃÓ˛Ó˛˛̋à©òá˝wáààò©™∫ª˝ÀÃÃ˝‹›Ì‹ÀÃÓ˛ÓÏ˘òóàıáwe˛xàxàxâàâà˚âôâ˛ôööô˛öôööógfwxxâôö´ºŒ‹ª©wfVEVVgxöºÕfi˚ӛêªôôwgwgwxàââöö´´˝ºÃøÕ›ÃºŒ˛Óίà˚x˘wa˛á˛à˝òôôòôôòôô˜©˛™ßwwááâô©™À‹Ó‹ ®ÜvfTfefwâªÕÓ¸˛Ì‹ÀÀªπ©óváwáàòô©™∫ªÀÀÃÀÃø‹›Ì‹‹Ó˛Ó˛È¯òàòàˆáh˛xàâà˚âôâôâ˝ô˝ö™˚ö2®gwxàââö´ºÕÌÀ™xwVVUEUVgyõºÕfifiÓÓ›Ãêª∫´™òfwwxàâôöö´ª˝ºú¸ÕŒ›ÕŒ˝Ó©âà˛âàâàà¯x¸wlwàáàòà˛òôò˘ô˘©˛™ ©®wâáàòô©ªÃ›‹ òáveeUTUUfw⩪ÃÌÓÌ‹˛À∫ ∫∫©áwáàòô©™ªªÀÀÃÃÀ˛Ã›˛‹˛›Ó˛Ó˛¸ô˚òà˛òàáààáàà˚ág wxxààâàââôâôâ˛ôâ˝ôöô˚ö™öôgywxxâäö¨ŒÀ™òxgfU˝E    VVgxöõºÕÕÃ˛ª´™´´öáwàxââöö´ªººÃúÃ˙Õfi¸Ó…àà˛â¸à˜x˝wgá˛à˛ò˚ô©ô©©ô˝©™™©˚™©wwÜwáàòôªÕ ©òàÜfe˛TUeefwàôª˛À˝∫ª∫∫©óáàòô©™™ªÀÀ˝Ã˛‹Ã˛‹    fi˛Ó˛Ó˛˝®òô˘ò˚àáàà¸álxààxâàââôâôâôâôôöô˛öô™™˛ö™™ö™©gwwgwwxxõº™ââàwfVU˛Vggwgxâö˛´™öö˛´
  506. ©ôwxxâôö™´ª˝º˛Ã˚ÕŒ¸Ó⁄ââ˛àââ˙à¯xwwpáààòòôò˝ô©ô©ô©©™¸©˛™©˝™ ©wwvvfwvwôªòô˛©òàô©ôô˛©ô™©™™∫∫©ô©™ª∫πòáààòô™™ªÀÀÃÀ˝Ã‹Ã‹‹›‹fiÓ˛˛Ó»˚òàòàòòàòá¯àááWxàx˝â
  507. ôâôââôöôöôôÛöw˛g˛fgxöxyõª˛Ã˛ÕÃºÃ˛ºªª´´ª´™ö´ª™ôàxàââôô´´˚º˚ÃÕÕfi¸ÓôÓàxà˝xdàà˛ò˝ô˘©˜™©™©™™áw˛v    fevwówàô´fi˛˛˝‹ÏÃÌ ´›Ì‹››‹ÃÀÀªª∫©òàôò˛ô∫ªÀ˛ÃÀÃÃ‹Ã˝‹›Ó˛Ó˛Ó˙ÙòàòàòàòòàòàòààY ààâàââôâôôöô˙öô˛™ö™ö™˛ö™öàgg˛f˛VvWxxâΩ˛ÓÏ´πâ´gxúôºŒfi››Ãººª™ôââôàââö´˚º˛Ã¸Õ¸Ó…ÁàWàòàò¸ô˙©˜™©˛™©™ówvf¸e&ufwváàÃÓÓ¸ôßvÜUfä∏àôΩ‹›Ó˛‹‹Ã ©©ô®áàô™∫ª˛À˛Ã˚‹›˛Ó˛Ó˝®¯òàÚòàd˛àââôâôôö˛ô˙ö™™˛ö™˛ö™ö™ów˝fV˛U&EVggfz≠ÓÌàÜVU5FivVhú´ºÕfifiӛÙôôàgxxäõ´´¸ºÃ¸ÕŒ˝Ó€˚àââ˘à¯âàà`àòò˝ô˙©™™©˚™©˘™ßvvffe¸UfvvegôΩ˝ßÜedDUxuUwö™ª‹›˛˛ Ï ©®óvvxô™ªª˛À˛Ã˛‹›‹fiÓ˛Ó˝∏Òò ôôòòôôòôòòán    àxââôâôôöô˘ö™ö˛™ö™ö™¸öòwgfVeVU˛EFVVUEgy¨ ™UTEVieVgãö¨ÃÕ˛Ó €ôôâwffgâ™´ºª˝ºÃÃ˝ÕŒ˛Ó⁄òâ˛àâààâàà˛âàˆâààa˛ò˛ô¸©™©™©™©Ú™0®ávvefeUUTTUUedUUfwôöòÑUfyefwõ™ÕÌfiÓ˛Ï©ààáuefwô™ªª˝À˛Ã˝‹fiÓÓ˛π¸òàòàòà˘òôòôòô¸ògx˝âôôöôô¸ö™˛ö™ö™ö™ö™˙öwffVfVU˝E#UVEEDEVghwffhävgx≠ÃΩÓÓfi›πàhxwfUVgâõª˛ºª¨ººÃ˛Õ›ŒÓÓÌâ˙à˝âàıâ˛àx^òò˛ô¸©™©Ï™óvfvfveUU˝eTDUT˛e"fvâ´ ò™™Ãπ´››À∫òáÜvveUfxöªÀÃÀÀªÃÃ‹Ã˝‹ÓӲ͢òôòò˙ô©˝ôòô˛òàlà˛â˝ô˚ö™öö™˛ö™öö™˛ö™™öö™àwggfgVUFUEVUD4FU˛EUUVhôi™ä¨ò䪙öààxwffEUVxö´ªª´ªª˛ºÃ˝Õ˛Ó…˛â¸àâàà˜âôô˛â˛àhòòôô˝©™˛©˝™˛©¯™C©™©™™®àvffvfeeTUeeSCDedTTDTTUfvwàôôòôôòàówvveUef♪ÀÀªÀºªÀÃË›‹›Ó˛Ó…ˆòôôòò˙ôòô˛òàáhàââôôö˛ôöô¯ö™˝ö™˛ö™˛öôàw¸fUE˛UD45EUUD44DEUVVggwwx˛à wfVfUEVgyõ´ª˛´ªªºº¸Õ
  508. ÓÓÌ©âàââàâà¯â˝ô¸â˛àw]òôôı©ı™©˛™˛©òÜvvfvu˝edTCDTUfdTCDDTUeffgwòà©ò˝veUfgâ™À ∫ªª∫ÀÀË‹››fi˛Ó¸∏˙òôôòôôòò˜ô˛òàáq ââôâöôöôöôöô˝öô˛ö™ö™ö™˘öôàw˛fVfUFVUDD4DEEUVUD44DEEVfgxâöôàv˛feUVhä´ºª´™´´ªºÃ˛Õ›fiÓÓÌπàà˝âàà˚âôâ˝ô¸âààxwgòôô©ôÛ©¸™©™™˝©™©©®áwfvv˝edTCTDDTUefveUUefgáàô˛©ófvffeefxôªÀÀ∫™∫ªªÀÃ˝›fi˛ÓÌ∏˜ò    ôòôòôô©©ôò˛ôàòààwn˛âä˛ôö˛ôö˛ôöô˘ö™˝ö ôöôöôwgfgffV˝U4D˛4EEVWgwg˛àâö˛ôàvVffVfVgxä´ª∫™˛´ªº˛Õ››fi˝Ó€âàâ˛à˙âôââ˛ô˛â˝àxwaôôÒ©™©¸™˜©ó˝vf˝eTT˝DEUUffwá˛òô©òôòávv˛fefwà™ÀÀ˛∫ªªÃË›˛Ìfi˛Ó˛ÓÏ®òòôòôòò¸ô©ô˛©ò˛ô˝òáákââôôöôöô™ôöôöôöôöö™ö™ö™˝öô˙öàwgfVfUVUUEDD44D4˛EUfw˛gwxxàwwffUVVfVgyõªª¸´ºÃÕÕ›˛fi˝Ó›©˝âà˚â˙ô˝âààxwxWôôÔ©˛™ı©®ávvff˛e˝TD˛CDUUefá˛vwwàá˝v˛fefwô´À ˛∫ªÀº‹‹››ÌÌÓÓ˛Ó˛‹…˙òôò˝ô˛©˝ô˛ò˛àáj    âôââôöôôöö˛ôöôöô˙öôöôöö˙ô ávffVfUUEE4D3˝4DEEUf˛Vgwgg˛f˛VfVghä´ª´™™´´ªºÕÃÕ›fi›fi˝ÓÃπà˛âà˚â˙ô˛â˛àxxw^˛ôÚ©™©˛™˜©ô©©ówvff˛eUTT¸CDDTUeU˛efvfvfv¸fvfxôª∫ªπ∫™ªÀË››˛Ì
  509. Ó˛Ó˛Ì‹πôòôò˙ô˝©ô©˝ôòòààááfââôâôôöôöôöôöô˛öô˘öôööôö˝ôöâwgffV˛UDD˝34D3DEEUVVUVVffVf˛Vfggfi䲴
  510. ™™´ªªºÕÕ›fifi˙Ó∫à˘â¯ô˝âààxxw]˚ôÁ©ô©ô©®áv˛feUTTDC3˛C3˛D˝TUUe˛feveff˛vxö∫ª∫∫™∫ªÀË›ÌÌÓÓ˛˛Ó˛Ì€˛òôòôò˚ô©ô©òôòô˝òáàwaà˛âÛô˛öôôö˛ôö˛ôö˛ô    öôáfVfVUUE˛D343˛4EEDEDEEUUVUVVfUffgfgyö´´˛™´ªºÃÕÕfifi˚Ó››‹ò˙â˜ô˝âàà˛xUò˝ô‚©™òÜvf˛e˛TS˝CDD˛TUeTUeUUeU˝f˛vwô™ª∫∫™˛ªË›ÌÌÓÓ˛Ó˛Ó˛Ì›Ï»òôòôò©ô©ô¯©ô¸òàáb ââôâôôöôöôöô˛öô¸öôöôö¯ô ööõôwffVfUUDE˚D45¸EV˝UEVVffgfgxâö™´™™´´ººÕÕfifi˙Ófifl‹ ˙â˝ôö˚ô˝âààxw^òòôôÁ©ô¸©™∏ávff˛eUTT˚DTTDDTU˛eUeUff˝vwàô™¸∫ªªÃ‹›ÌÌ˛Ó˛Ó˛ÏÀfiÏ ò¸ô©ô©ô©ô©ô©©ôòôòô˛òàá[à˝âıôö˛ôöˆôöôöö™àw¸VEDD5EDD4D4DDEEUUVUEUUVff˛gxyô˛´˛™ººÕÕ››fi˙ÓfiŒfiÕπââ˙ôö˙ô˛â˛àxwZò¸ô‰©˛™©óvffeeUU˝T˚DTUeefveefvfvfvwàâ™∫´™∫∫ªÀÃÛÌÌ˛Ó˛Ó˛Ì€Ã˝ÌÕÍôò©ô©ô˛©ô˛©ô˛©˝ôòòààb˝â˚ô öôöôöôöôöôöôö˛ô˛öôöôöô˝ö    ©àgfVgUUEE˛D44˛D˝EVVfVfVggfgwwââö˛™´´ººÃÕÕ˛fi˙Ó‹Œ‹õ‹ôâÚô˝âàâàxcò˝ôÓ©ô˘©™©˛™∫òá˛v˛e˝TDDTDTDTTUeffvfvwávváòàô™˛∫™ªªÃÛ˛Ì˝Ó˛˛Ó    ˛ÃÍö‹©ôô©ô˛©ô©˛ô©ô©ôôòô˛òàà[àà¸âÌôö˛ô˝ö™öö´ôx˛gfU˛E˛DED4EDEEVVgfggwgxgwxââõ˛´™´´ººÃÕ˛fiÓfi˛ÓÏõfiÓ™Àõ›©Òôâôââ˛àxVòòôô©ôÁ©˚™´πòÜáwvfeeUUTTD˛TUDTeevvwááàówààò™ªª ∫∫ªÀÃÛ›˝Ó ˛Ó˛ÓŸàæÓÌ ºÌ⁄Ò©ô©ôô˛òàiâàââôâ˝ôöôöôöôöôöôöôöô˛öôöô˝ö˚™ôàâw˛fUVEED˝ED5EVVggxxàâwxââô´´ª´ª´˛ºÕ›¸fi˝Ó›®åfiÓÌΩÓ€˜ôö¸ô˝âàâàà`˛ò˝ô©ôΩ˚™˛∫    ©òòàáávfeT¸UTTUUffwwàòôòòàô©™ªÀÀª˝ÀÛ›ÌÓÌÌÓÓ˛Ó˛ÌóäÓ‹ÌÏÓ⁄πô˛©ô©ô©ô˛©ô©ô©òô˝òádà˝â˘ôö˛ôö˛ôöôôöö˛ô˚ö™ö™™´™ôâôâáffV˙UEVFVfxxäôöôôâ´ö´ººªª´˛ºÕfi›˛fi¸Ó fiŸxyÆÓÏ›Œ∫öôö˙ôö˚ô˛â˛àx^òò˛ô©ôÛ©ô˙©¸™∫™˝∫ªπ™©ô®ávv˛e
  511. feufeefvwàô˝™©©∫ªª˚ÀÃÛ›ÌÌÓÓ˛Ó˛Ó˛›ßàô¨ÀÌ‹‹ ™ˆ©ô©©ôò˛ô˝òn˝âôâö˛ô˛ö ôöôöôöôöôöôöô˚ö™ö´™´™˝´
  512. ™ö™©áhgfVff˛gVVggxà䲙´ö´ªººÃºª¨ººÃÕ››fifi˚ÓÏ∫hàâööÕ››Ã´ôöô˛öô˝ö˝ô¸â˛àgòò¸ô©©™¸©™ôı©˝™˙∫ª∫∫™ª∫®òáwwvfwvvffwáà©™ªª∫˛ªÀËÃÃÀÃÀË››ÌÌ˝Ó˛ÓÓ‹óààô™™€‹›Ì€˝©ô¸©ô©ô©òôòôòôòòàkà˝âôâôôöö˘ôöôôâö˛ô˝ö
  513. ™™´™´™´™´´ª˛´    ª™ôâààgwxx˛wyâä™´¨ªª´˛ºúÃÃ˛ºÃÕ››˛fi¸ÓÏöwxââõ™À åfifi∫¸öô˛ö¸ô˚âààY˝ô©ô¸©™Ù©™©¸™¯∫º˛ÀÃÀπ©©òááàòáààôô´ª˚ÀÃ˝‹˝Ã‹›˛ÌÓ˛˛Ó˛Ó˛∑uvxàòõÍæ∫®¨ÕͲ©™©™¯©˝ô˛òiââôâ˝ôöôöôöôöôöôöôöô˛ö
  514. ôöö™ö™ö´™´™¸´¨˛ªºÃª™ª™àâôôàââöö˛º¸Ã˝Õ    ÃúºÕÕ››fifi˝ÓÌÓÎvWhwxyçŸåßVj›‹¯ö˙ô˝âààdò˛ô©©ôÔ©™©™©™™˝∫˛ª˝∫˛ÀÃËÀ‹À∫™∫˝©™ªÀË‹Ã˛‹˛›˛‹"˛̛ÌÌÓÓ˛Ó˛Ó˛∑efwáààù€ÃÖfhÌ‹©ô™©™™˛©ô©ô©˚ô˛ò`àôââ¯ôö¸ôöô˘ö™™´™´´™˚´¨˝º˛Õú˛ª´ª´ººÃ˛ÕÃ˛Õ˛›ÕÃÃÕÕ˛›fifi˚ÓÎfVfxàxâÆ€ÃvVVÕ‹º©ââ˚ö˚ô˝âààZòò˝ôÒ©˚™˘∫˛ª ∫ª∫ªÃÃÀÃ̛ۛ˛‹˛Ã‹‹˝›‹›¸Ì˛‹˛›˛ÌÓÓ˛Ó˛Ó˛ÿf»fºáòôÕ‹◊wfeÛ⁄ö∫áâ©©™™˙©ô©ôôòòi
  515. ââôâôâöôöôö˛ôö˛ôöôöô˚ö™ö˛´™¯´º˛ÃºÕfifi›fi›˝Õ›Õ˛›fifi›fi›fi››˛Õ››fi›fifi˙Ó∂ù‹gæŸâáùÕv≠vWÃæÕ∫º vâ˝ö¯ôââàaò˝ô©ôÒ©˝™˘∫ª∫ª∫ª˛∫¨¸ÃÌ˝ÌÌÓÌ›‹››ÌÌÓÌÓÌ˛ÓÌ̸›˝Ì˝Ó*˛ÓÓ¸òŸúkfiÌ©vx‹x̶g€Ÿ´‹∫Àπvâ©™©™ô©ô©©ôò©òôòW˚â¯ôö˛ô˘ö´˛™´™™¸´ ª´´™¨ºÃúºÕÕ˛fiÓÓ¯fiÓfiÓÓ˚›˝fi˙Ó‹åö≠jfiÓ∏WåÕåfißfîxzº©¨®fxâôö˙ô˛âàdòò˝ôÙ©™©©˛™∫™˙∫˙ª∫πºÃ˛‹Ë‹›Ì˛Ó˛Ó˛˛Ó˝˛ÓÌ˛ÌÌ›¸Ì#Ó˛Ó˛Ó˛Ó˛ÌÏ»fi‹yÌÓϺ›ÌÕÏÜezàô©©ªòÃ∏ugà˚©ô©ôôòò^˝âôââ˛ôöôöôöô˛öôöö™ö˝™´™ˆ´™äºÃúºÃ˛Õ›fi›fiÙÓfi˛›˝fi˘Ó›∏≠‹{ùfiÓ‹Œfi›fi⁄uEΩª∫´ÕÕ€¨›πUVgâö˚ô˛âg˛ò˚ô˛©ô˝©™©©˚™˙∫˙ª ∫πzÕ‹ÃˋË‹˛›Ì¸Ó    ˛Ó˛Ó˛Ó˛ÓÌ›¸Ì1Ó˛Ó˛Ó˛Ó˛Íâ≈lº‹|ÌÌ›‹ÓÌÌóîYÏÃË››ÌÌ››»ufewô©ô©ô©òôòW˙âôâ˘ô˘ö¸™ˆ´¶å˛Ã    ººÃÕÃÕÛ՛¸fiÓfi¸Ófifi››fiÓfi¯Ó!®iÖ\›ßXÕ∏≠ÕfiÓ€wf~›‹›ΩÕ›™ºÕÕÃπfiôwâ˛ô˝âpòò¸ô©©ô˙©˙™∫™˝∫ª∫ª∫˛ª
  516. ∫ªª∫ÖŒÌπÃ‹Ã˝‹››Ì›ÌÌÓ˛Ì˛Ó˛˝ÓÌÓÌÌ˛Ó,˛Ó˛Ó˛Ó˛¸áçΔk»feàe{ÓÓ˝Îñg ª›Ω⁄››ÿeVxöÃ∑väÀòô©©˝ôcà˜â˛ôööô¸ö™ö¸™˙´ª˛´™WÕÕãúºÃÃ˝Õ››˚fiÌÓ˝fi›fifiÓfiÓfi¯Ó&⁄fÆ«geEDEV{fiÓÌ›Ülóg{›ÃΩfiΩ∂4DHº vf{´∫âôô˛âo˛ò˚ô©ô©ô˝©™©˚™∫™˝∫ª˛∫ª∫ªªπwö ›º¨Ã‹Ã‹‹›‹››˚Ì˛ÓÌÌÓ˛ÌÌ¸Ó˛˛Ó.˛ÓÓ˝»áfiñveiâ xÕÕÌÌ‹®Õªπw≠º‹››π®•C{À…vUw™®xôòôò\à˙âôâ˚ô˘ö¸™´™˙´
  517. ™u8¨©ªºùºÃøÕ›fiÕ›˙fiÓfiÓ˛fiˆÓ+›®yfivvV´¨fi´€Ãå›õÀӛժ䋠ՋåôÃd5yhï4EUgwäôââiòòôòôôˆ©¸™˜∫ª∫ª∫ª∫∂BZÃÃzκ¨Ã˝‹››˛ÌÓÌÌÓÓ̸Ó9˛˛ÓÓ˛Ó˛Ó˛Ó˛Ó˛Ì‹ó|ÎveHº›ÓÓÌ∑äÌÃfiÏÃÀÛϛÏô»»Õ⁄SDedCDôÜfi∫©ôs˝âô˛âôâôôö˛ô öö™ö™™õ™´™´™˝´ª˛´ ©õî4{º⁄個õº˝Õ˛›
  518. fifi›fi›fi›fiÓÓfi˛Ófifi˜Ó‹ÀwûËeD9›fi›fi»j ›ÕÓ››Ã∫ºÕÃuù…Õöú¶˛3    43K¨Ã®Wòhe˛ò˚ô˘©˚™∫™˚∫ª∫ª∫ª∫ Sy´¨»ÀÀÎôÃ˲›Ì››˘Ì˛˚Ó+˛Ó˛Ó˛Ó˛Ó˛Ï‹»áŒΔTCJ›ÓÓ˙gÕπΩÓ››‹Ã⁄õ‹ïU›ƒ|⁄âvs3˛CDâeTDUfbàà˚â¸ôöô˚ö¯™˛´™ô´º∂6™´|ô‹ºŸxºÃ¸Õ˛›fi˛›fi›˝fiÓfi˜ÓÌúßgéÜD#;ŒfiÓ»Z€iõÃŒ˛›ÕÃÜDExDEº®©f#3#4˝34DElòò¸ô©©ô˚©˝™∫™¯∫ª∫®ôºÀÑj®™´âÃÓΔfªÃ‹‹˛›Ì›¯ÌÓ˛Ó˛Ó˛Ó˛Ó˛˛,Ó˛‹ ›ßwåªt4V¨˛Ìu}Δ¨ö⁄ÛΪŸuUeftDC[ô ñCD233Gd2˛Diâà˝âôâ¸ô˘ö¸™´˛™´™©wxyÜEâhõ x¨fi•F´ÃÃ˝Õ ››fi›fi›fi›fi›fifiıÓ/›Ã´Ωvf~ŒÃ´∫¨ÓÌVΩj›ŒÃÕºä TDGV|‹T49ÃöS6àó33Y[ßfD4m˛ò˝ô©ô˛©ô˝©˝™˜∫πÖUTTDyuDX‹π››µV∏Ë‹˝›˛Ì››˛Ì˝Ó˛˛Ó˛˛Ó2˛Ó˝ÀÀú‹efΩ⁄y›Ï›ÌÏfËl‹‹€››Ã‹dTj‹Ã›≈ãßWc3Wô©ïRãx´πñTaà˚â˙ô˚ö˙™´™™ôá4DD3HòTDGºπ挕WߨºÃ˛Õ›Œ˝›fifiÚÓ0‹º∫≠ÃVgŒ÷E|fiÓÌ‹{ΔçÕjà´w|ÃÀEX ÕÕ‹≠Õ∏34yy©eÉö™ºº™ßkò˚ô¯©˛™˜∫®ôtVáueäïSfYÀ∫´Ì•x∂´Ã‹‹›Ì››˝ÌAÓ˝ÓÓ˛Ó˛Ó˛Ó˛Ó˛Ó˝Ó¸ÀÀ∏‹€fgÓ÷fõÓÓ¸‹äñªÌ{µ¨Àv˶fzº›Ì‹∫ç7yòòZs∏ÀÀ∫òwrâàââôââôö˝ôöô˛ö™ö´™´™´™´™ôxöà´´ª™™U6õ©ΩºâæÜzñãº˝Õ˛›fifiıÓfi˝Ó Àª´xÕŸfZ›ÜzŒ˛Ó›xfæ≠ôŸeWx庻FVº˛Õï3#wßjtñ#vj™T4Gzôôò˝ô©ô˝©™©™™∫™∫™˚∫R©áö©ªªÀªªßCFºóÕ€àöáäïäªÃ››Ì›ÌÌ˛Ó˛Ó˛Ó˛Ó˛Ó˛ÓÓÌÓ›ÌÓÎ∫∫´åfiÁgùÌ©º‹›Ì›ÏÜvÕ™÷≈{s#[À€eUåÀu˛2 äô®gÇ23ãÀ∑CIk˚â˚ô˙ö¸™´™ôyö™ÜXUxxöe5w™YÛàòxzÜj¨ºÕ¸›fifi˛Ófi¸Ófifi˛›$fiÌ∫™™fùæΔhæfi̺ªôàú fYΩ∂öb%yxEºÃ§4IÀd4˛" %ähi2#4{ºÖ9m˚ô˚©˚™˙∫∏vöªπÖdCC4xb6º«Uª àòàöÜy™ÀÛ›˝ÌÓ˛˛˛Ó=˛ÓÌỚ̋›Ì€∫™©Ü|Õ¶âfiÓ΋©óvvóvzUdy22"5ò Ã◊CDÑCC22""3Vu22CCDh™uj¸â¸ô˘ö˝™ ´™™eX™´™àEyT4jTX¨…eiVxõôäviö´ºΩÕ›¯fi››fi›˝ÕfiÀ˛ö0¨ºÀ›gãfiÓª©xvggUGñ##´S3""{¨ºD44DGâô2"C$ä®C33%àw˛ô©ô©ô¸©ô™©˛™©¸∫ÖDi™™πÑYÀ∫ôªgò|ÃÃ∂Uxú‹ Ügô™ÀÃÃ˛›Ì›Ì̸›‹›‹‹Ã›‹∫©©®ªm«Ãx´‹€πá˝v"dkc23∂3B22":¨‹∫∫ªÀÀπ§!""%©zª«CB22n˚â˝ôööô˚ö˝™óU4FWy®DZºªº∫jÜåºÕ€VhãŒÃÜgöö¨˛º˛Õ››˙Õ˛ÃÕÕ∫˛ö
  519. tõ{äΩ∫¨Ã∫áV˛g#fEó2##ôH®S")≠€º´ºÕÃ∫áT""#jöº¨£"#"m˝ô¯©™™©˝™#∫∫ßedDDEyïD{∫àvàt∂xªÃÖvxº‹ñwô©™ªÀÃï‹˛Ã˛‹ ™©©ßdú›≠fi˛‹ÀŸeUvvwdY§˛2ååΔät3z€Ã‹ÃÀÃÀÀ •C3CCD¨À∫ì2""vô˛âôââ¸ô˝ö˝™!´™tFC5CHòUDkÜ{™vÜGî5{ÀñUXxõÜfâôô´¨˛ºÃú˛Ã¸º-êªôöôôuD盋fiÓÓΩÈUEWgeElc#"#\Ãîùàsªª∫ººª∫ª»áUh˛D37™Ü3"#vô©¸ô˚©™©˛™&∫∫™¶Ce2GÖ{•TDzsDUeSIuXxÀ∂TUáwñfâ©©ô´ªÃÀ˛ÃÀÃ˚À9∫∫πôô©òdDùÌÃÌ›ÓÓÎTTUvcG€öî3DFuDÃ⁄V‹«ÀòóeeºªÃ‹ÀseUUTT3B"E2m˚â˙ô˝ö˝™t5Ü#[∏ädD4jd##34[y´π|∂EFãñvVyâô˛ö´˝º˚ª™öö™˛â4ôÖ45içfi› ÕfiÓuEEU"LÀFÕº©T47ÃÕyõä•EDEGªL4µD5õ®äôôàu8ïÜv˝ô©ô˙©¸™!∫∫©uzΔ4öñßTDDyÑ2"3Cú‹ÏÀÃËeú…ïÜfxôô˛©    ™∫∫ª∫ª∫∫™∫˛©9™©ôòôòdCFwöÀÓϪÛ≈TCB3ÕÿuxºÌ€sI‹ÃÑZ{TUeUi…j5¶ªÃ››‹›‹‹ ©TUo¸âôâ¸ô˚ö    ´™ôU{∂7óEÖ˛DYÑ3$D´àöò{ X™y•wVhââöô˙ö™ööôôöôô˝â*ÜD4Giú›fi‹æÕã÷332*››ÃêÕÕî;›Õu4f4UUEJΔàYãÕè¸ÕÃÃ{ªv˛ô©òôò¸©ô˝™$∫∫©Ö2hÉ6s6s3DCiÑGÑG§õö∫∫™ÍY©ªµxfxòôòô˚©ô©ô©˝ô˛à6òòdCDgöΩ˝™©›º¥ªCC2çÌéö‹Ì›»[‹€eCCDedCJ•«z[ÀË›€ ∫©ÃÃòk˙â˚ô˝ö
  520. ™™àdXR#GC˛#iÜåñõ©©ä¨ª¨‹IÀ´¶iVg¯âô˚â;ààxààxáD35iöŒÎwwººƒçS3%Œ›ª´Ãª≠›¨LàEC34UD3lî∫ò<ÕÃÀ®gVWxΩÕÀªq¸ô˘©˝™$∫∫áÉ#gb!"vB223wâ©ò…ÖDfwàô‹j‹õ•jvwàôô©˝òôòô¸ò;àááàòàÜdCFö¨ÓÈwel€‹⁄C"KÓÎ‹Ω…Õ‹›Ã|‹ŸeeCCEc3ãwö«ã‹‹≈TUUWªÃ‹€ªx˝âôôââôôöôöö™ö™™®ibgB4˝#ggVyπc9º∫™fçkÃâÖZfgxâôô˝â©ôààâxà˚x/vfUDGõæÌófD5Õ⁄S#$éfiÃÀ≠‹ñ}›À\պêc46µ4™LÃ∑ºúº…E46˛Õ∑}Ãnò˚ô¸©¸™#∫•jr#fA!!$eS23áVvyôr% €Õtkâ Ötjvfààô˚òàááà˘á6UeeUg´›ŸïTB2k£327fi›ÃŸ›Ì‹¨›‹l efúìCIáñΔ7®º´ªÃÃì3K‹‹›«ºÿr˙â˝ô˚ö(™tZb5"J´®DDggvYÃÉçÕÕdIÖfTEZvWwàââàâàà˝x˛wxwwgwwEUEFyúÌòu3˛#)34\›ÃÕ´Õfi›ÕÕÀKÜEUùÖ3<[å£"#}fwÕÀ∂3LÃÃ…¨Ãîsò¸ô¸©˝™#∫∫πchA$T!!#´Ã‹∫™ïVTi‹ï"IñUf´ßDBDYñfw˛àòò˘áwwá˛w7îEeUg™≠Îás323C{É4ÕÏÀ‹f≠›ÌΩÌ‹´òvWŸeCk{úŸB3úZSºÀï3ºÃâ"Föo˚â˝ô˚ö$™©2E$342(ºÃÕª¨ÖC6éÓà45ú›‹ß#35HñVwxà˛x˙w˛g;wggzcFUVhõæŸfD3#3Jºö[fiô¨ï≠›Õú›Ã»úÕº∂UTzô¨ÕC6å|2lô3(ºÃúB"#wò˚ô˝©˝™&∫™ß2B!!$cCkªÃ‹À©î2FÕ˝∫àó|ÌÌ…vB3Dg¶evwáà˛á˛w=ÜwwvwwvÜw•CUUfyº›∂eeCC3l©K›Ì®ºÃ‹€‹e\‹ÀÑfäÕ÷fd¶«À CEöª27î3KÀÀõB˛!tà¸â˛ô˙ö'ód%RBFõfkêàt#XŒÌ∫¨∫õÃÕ™öî34W¶Vgwwxww˚gfgf˛g9iT3EUg㺋fEU343®îçfi‹ªôΩ›Õ…U\ºÃDEVWvUV∏∏Õ«4"6ß##3#lº ®2p˝ô˚©¸™"∫ÑVx1!#vñπSIÀ vR#ófiÏßò¨›ÏÀπòôïCW∑e˛wáww˙vfvfwvñCCUfx™º∑eUfTCF∫gfiκ˝‹ÃΔeãz⁄CE˝ehÀ∫€’CECT2CCD º⁄’3!""r¸â˝ô˚ö©eiî˛yf∏3%ã∫f"&õ›∫e3GõΩÀÕ»Wxt6∏V˛gw¸gfg¸f;ggT34VVyäàwgVVE49»\fi…vwhΩÕ›ÜV´º∏4DVUVU[ÕÃÕ§4ç•#&C#9ÀπÕîEUv"z
  521. ôôòôô©ô©ô™©¸™©òR˛!"TF«C2F∏c"V¨ÏÃàB3Uå∏eTCEóU…efvvw˚vfvvf˛v:xCC3efàôÜfxÜáTCK¥ΩÌ∑uSEgõÃeUTDS[ vfUg¨ÕÛsH◊ªR:§CK‹€πIÃÀÀbt¸â¸ô˝ö'™´∫e"##337ßC#$gB$f≠€ΩxR%eD3DD4Ww∫fWfgg˚f"VgfVfVhßî34VgyòvgâzÃT39∫Œ€ÜU4FUVWUD˛3}՛ú՛|≠ÕTlÃ|µ6ÀàùÕ‹s9ÃÃö≥u˛ô©©ô©©™©¸™#Õ2"Thô©ñX®u23fd4eåÏ€ßì"4CCDhπÖefâÜf¸v˙f&eefeºÿCDfwàávâòùÀµCSlÓÎóTTUefeUefc2º››Ì˛›‹›‹TΩúÀÃsóe¨º÷C3úÀª©v˝â¸ô˝ö$™õ™BTXäÃ…jö™d5fâUEå‹∏¨∑"6VUV¨á∏VUWá˝fgfVVfVf˝V<ffŒ‹D4ghxxàä™Õ´úeDéÓfiÕÃΩÀ´©ä¨ÕªΔ%ŒÕ€ù›ÕÛՀFÕπÕª«FEGúd#3Z…∏ºy1òôòôô©ô©©™©™™∫óó1!Hô™ªÃ âujµEyôuT¨€Üª€dºÀπz∏fäÀufá˛v˝f˚e>fefÀ̸§Dww™∫ô™¨ÏÏzµGÓÓÏ∫›‹Ã‹‹Ã‹€º≥G››‹ãÃÕ€ªõ›tÕ⁄Õ‹ÃUUT´SDUYªáãu˛âôôöô˚ö*™TUköô´´ªàUI•Vâ©T#ã©Ujª∫ºÃªªwfY∏UVâggfVVf¯VUΩfiÏ∏EgxŒÓfifi›fi̪¥LÌ´˛Õ%ëjÃÕÃèR;À›fi››úåÃ{Ω¥l≠¶}∂5EEH∫UEWÃvß{ôô˛©™©¸™.∫∏SS2%ª©™π´ óejuw…ñB"UïDyªÕ‹‹ÀûvåÖTiπóvffeefef¸e=fTfiÓ˝ªuáô™ÌÓ˝ÌΩ€‹ÜæÎÜWºÃ‹‹«Ã›€Ü»2Lÿ›Ì›⁄‹∑⁄€Y¥Gª€…SEeUU{◊eeº«Ÿ{ââ˛ôöô˝ö+™™u4D2:ª∫¨òk ä™öVW∫T"5t6xä≠ÌÕÃΩÀhπD4åªòffVV˛U¸V>UV9fiÓÓ¨óä´™´fiÏæπáy›Ó…eD6¨ÃöÃÕ›∏å√#<ÀÃÕ›Üπ»´çß4#:Àd35EUDUkïUlºåvôô©©ô©©˝™)∫ßS4e3|À»ºÀ´€óö…gdvB#36Ufez¨˛€Àú ´®™ÑEº©vfˆeSl˛Ó&ª⁄∫óá¨fi›ªŸfUfiÌ∑TCEªºdzÕ⁄àºÉ3m€›úÿeúÀ|úì˛3c3CEeTDCDáUYÌ∫yââôô˙ö)™Ö44d%¨º®ºÃ´ eVUWC3"Gt%ee5jùfi‹™f{À©∫D3I™vV˝UV˛U2VUUD≠›ÓÓ»ÀfgyÕÀçÌÕsJÓÓ◊D4K∏}∑4Xõ∂ùR#m‹ÕΩïVlõö¨b"#"#˛"˛3#33EG‹ª}ôô©©™©˝™)∫∫cEgcXÀÃóºÀ™»TTUt2"#ÖwÖïcEyù›ÌÕŸö∫©îCHÖäó˛e˛U3eeUUfeD›fiÓ˛ÈùÜwäÓ⁄äÓÕ’ûÓ˛◊DC´ÿÕ›îB5¨»22\Ω€ÈUvh◊ ÷233˛2 "2"22"CCDeÕ‹|â˛ô¸ö-™™ñ3Iß3{∫´vù¶YßDEWc#"'w6GÜC5W}Àæfi̪ºÕ…Eå©XóUUV˛U3VEEVVWjfiÌfiÓÏçÜäõ‹©àŒÌ›fifiÌ»45¨Ãº›⁄33%s#"l≠ÕFfVº©S##"˛# ""#"##34TmÕ~9ô©ô©ô™©™™∫™Ñ#ã§Eö™ªß¨îXßòàôR22HñV5Gyuu{ŸôfiÌ‹›ÓÓÀ ∫ïòeeUUee˛UfegÃÌÌ˛ÓÌ∫vxº∏…áæÌ˛Ó    ŸƒCHºÃ€›Ã¥˛322L›‹TVfewS2"2#B˝2
  522. HñB32"DY[⁄xâôô˚ö#™©C´dFôz¨ÃºuigÃî3""àîtD5zóil v{º›fi˛Ó€´xYeUE¸U.F¨våÕfifiÓÓÌvàxòYπàûÕfiÓÌåd3;Õ≠ÕÕj 33#""%Ω∂4ED[ 4"¸#""$vã∑t##õ∂T{˛©¸™,∫∫∑26òdV™ôª‹ eeH›€•22$©vsbRG´∫´Ÿvõ̺˛Ó˛Ó˛€ßwܲUEeUUV´ÃñºÏÓ˛Ó˛ÌñóöïzπâÕ‹˛Î‹…CD¨Ã›Ì›‹º≥23224XdWÖY‹⁄C223322"28V£å§c28ú€dxôô˚ö8™™ï7ÜEGõªºÃπUC:àc#"öj7D2Gi™ú ´Õ }ÓfiŒfiÓÌπàÜEUEUEUä¨ÃhŒŒ˝Ó&fióôªáy©úfiæÓÓª≈39ÃùÕÀ]ñj 3$#"5xõΩ«]ÕÃD3"˚# xLE∂ãb#gºÕΔzô©ô˛™.©™™∫s"HïTUfegòñUek‹∏S229¶®XE#ã©zøäÏñåÌÕÌ‹›˛ÿ©ñ˝TVw»ÃÈG›fi˝Ó%fißÀ¨«öºÌ€Ó˛Ó‹•Dl⁄º›÷H‘¨ÖB2C3ÕÕ‹‹Ñl‹‹c3˚2 6ïΔKs\R3ßÀú}ôô¸ö.™™©S#ZuDE335UEgá[úôC#(ß•ïC'º¨yùÍå∑Ujöõ©VhΩ◊5wT˛Ei™úÕ≈K‹Œ˛Ó    fiŒô⁄|»Ωæ‹Æ˛Ó,›Õ∫õ…ŒÕƒ$ú«∂#&∑j›πÕï4|Õ D#"##3"J|Öö5∑#)lÕµ\}©ô¸™e∫∫ñC3âdTTC3Efyªµk™™S2!"jß•RkÖ婌Ÿ»TUfgáeTUg´dhTUTUöªºÌÉù€ÓÓ˛ÓÌŒ™È|€Ì›ÕÓÓÌ‹›Ì‹⁄΀›£3I£C3kÕÏ‹À÷TU≠⁄tC223˛23òÃY’Kí2WºÌÖº{öô˝ö˛™d3%óEUUEVxõºÀs\∫™C˛L${ß#xEΩÀfi dEEUUVD45Fi∫hUEEjdHÃÀD|ºfiÓÓ̋樻[ÃfiÌ›fiӌ՛ÕÕꀛs#3C#$¶8 ¨ UUVäTEC3¸#(ä»}t{3#§ΩÃIπ©™©™©∫™∫®c3Fπö©ªªÃ Ã‹…R|π«2"˛! %s8∑Y‹ ÌΔUDTUDUECCDiŸòuUy«DDù◊F™Ã˛Ó'Ï΋úÿkÏÌÌ€fiÕ≠››‹›ÏõÏ‹Ugâí29Ãï«|ueUefTTCC˛2"2L¨¶‹V’28g‹÷\ñ{ô¸ö™™ßC#FyºªªÕÃπåî2[äï"˝[∫|Ãõ VúT4D5E\Ñ44KÀßuIºuZ¶6¶Hõæ˛Ó ⁄⁄Õåπã‹›fi™æ≠≠˛›Õ›z›‹åè£#lZÕ§EE˝U4D3##"#"#%Ωã»LbJ\Ωïùe©˛™∫™∫∫πtDTDfâÛ‹€´⁄Ü2jydB!"˛!A#{u¨ªãÉkΩ¥DC4E≠ŸCCIºπw¨«g∑2"Diªfi˛Ó˛πÈϨ…´ÌÏÓ∫æÌ›Ì›Ï›ÌÕ€õ€|ºc5»«ùTD˛efdTDB˛2"232[›≈ªB2•ºΩà›ez˝ö˝™b´ñEC#34VåÃ∫´∫t"GgG3""%áH¨ôf5™›⁄EC6•çπ438ù∫â´v¨ñt%zºfiÓÓÌ™⁄€õππÕfifi…~Ó›fi›ÕÕÃÀvLÃó∫2:≈¨…45UUVVUDE23˝#"#4ù©≈27ñÕ€[ÀU ™™©™™∫™∫∫ßUB"˛3QHÀïeUc!5eàt2!"!"HïzÃCEÀ‹Ã∏™ºƒ©»3CHÀ™™vh…òR"6öÃ˛ÓÓΙ͢´»™ÃºŒÿ|˝˛Ï‹ÃÕ‹÷eX⁄Õƒ35÷5‘DU˛ej™ófSC3B˛2#Cl›É2\{›÷å⁄e}˝ö:™™´´™òUC#3#39ôóC#"5Fzì""5EúÃs3#ç‹ñºßl§âΔ33Z™¨´UX•ªì#àYæ˛Ó ã⁄⁄ªòõ˛Œ1◊}fifi›ÀªÕÕΔUDººÉ3#ôKc4UVUhäºÕÕÃ∫w£#"3#EF∫3%ΩΩÕñÕ«U
  523. d
  524. °dONLNd"¬Œa(Í,PETE (“LUKE”)°dONLNd0Œ⁄T*     ALEXANDER, Palatino °dONLNd:åñöˇ(µ¥?A beta version of QuickDraw GX comes to you on this issue’s CD.°dONLNdzûñ¨ˇ*?As you contemplate the vast scope of it all, you may wonder how°dONLNd∫∞ñæ‰*:you’re ever going to get your arms around this new imaging°dONLNdı¬ñ– *Ftechnology. Not to worry — this article will get you started. It walks°dONLNd<‘ñ‚*@you through the steps to getting QuickDraw GX up and drawing and°dONLNd}ÊñÙ*Bpresents a simple “GX-hip” application shell that incorporates the°dONLNd¿¯ñQ*"basics for you to experiment with.
  525. °dONLNd„$ñ0˚*+IQuickDraw GX offers developers a totally new and markedly improved way of°dONLNd-0ñ<˚* Oimaging on the Macintosh. Yes, you’ll have to learn the new system, but look at°dONLNd}<ñH* Qwhat you get: The API is simpler and the human interface is better. The amount of°dONLNdœHñTÓ* Mcontrol your application can exercise over text and graphics has been greatly°dONLNdTñ`* Tincreased. Your application will be able to produce consistent output no matter what°dONLNdr`ñl* Uthe output device. And extensive support for color is built in throughout the system.°dONLNd»xñÑ*PWith the beta version of QuickDraw GX in hand, you’re no doubt eager to create a°dONLNdÑñêÎ* JQuickDraw GX application and start drawing. This article covers just about°dONLNddêñúÛ* Leverything you need to know to get started: initializing QuickDraw GX, using°dONLNd±úñ®‰* Ewindows, creating and manipulating QuickDraw GX shapes, printing, and°dONLNd˜®ñ¥* Pdebugging. By way of illustration, we discuss the QuickDraw GX shell that you’ll°dONLNdH¥ñ¿* Vfind on this issue’s CD. But before we do that, let’s take a quick look under the hood°dONLNdü¿ñÄ* Hat the major features of QuickDraw GX and how it fits into the Macintosh°dONLNdËÃñÿ—* architecture. °dONLNdˆÈñ˜Ë*)QUICKDRAW GX: A QUICK LOOK UNDER THE HOOD
  526. °dONLNd ˚ñÚ*HQuickDraw GX coexists happily with QuickDraw, thank goodness. It doesn’t°dONLNdiñ* Mreplace QuickDraw, but instead “moves in next door,” so you still live with a°dONLNd∑ñ÷* AMacintosh Toolbox based on QuickDraw. You can run QuickDraw-based°dONLNd˘ñ+* Papplications on a QuickDraw GX system. These applications won’t even notice that°dONLNdJ+ñ7˛* OQuickDraw GX is installed, but they’ll be able to take advantage of some of the°dONLNdö7ñC€* QuickDraw GX uBu/ (x/ +
  527. 6+Ç
  528. PETE (“LUKE”) ALEXANDER )pstarted out as a(ñ¥8meteorology major in college and to this day is great at*
  529. 5forecasting the weather. He’d be happy to see nothing*
  530. 9but blue skies, and in all kinds of weather he strives to*
  531. 6incorporate something blue in his attire. He loves raw*
  532. 2carrots, despises cooked ones. He hates waiting in*
  533. 3lines and wearing a wristwatch. Sometimes when he’s*
  534. 6driving down the street and spots someone sitting at a*
  535. 5bus stop, he’ll honk his horn to wake them from their(åv4dazed stupor. And when he sees bicyclists sitting in*
  536. :their bike seats while riding up hills, he’s been known to*
  537. -yell out the window, “Stand up, you weenie!”•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇ˜"◊#ˇ ˇˇˇˇ#◊ 
  538. d, Palatino
  539. .°dONLNd$Ö+6@Qprinting features, including improved background printing to all devices, desktop°dONLNdR$0* 8printers, print job queuing, and better type management.°dONLNdå<Hë*PQuickDraw GX has three major pieces: graphics, typography, and printing. You can°dONLNd›HTw* Ovisualize the relationship of these three different pieces to each other and to°dONLNd-T`¨* QuickDraw as shown in Figure 1.
  540. ä2.û"ä2°d
  541. ONLNfH".û°d
  542. ONLNfaé†Ç†é
  543. 4â1ä2ò.@l@lä2 û””” Ùˇ‡‰ˇ¿ Ùˇ‡‰ˇ¿ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇò.@Äl@Äl 2
  544. û Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ Ùˇ¯‰ˇ”””””””’ˇ¿’ˇ¿’ˇ’ˇò.ħlħl
  545. 2.û’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ’ˇ”òÅl@lHHˆt∞&úIJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  546. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@lä2 û'ÅÅïÅÅïÅÅï ˛ëˇˆÅˇïˇˇe˛oˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*k+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ`˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯!ˇ*+*+*+*+*+*+*+*+*˝ˇ+*ˇ*+ˇ+˝ˇ*+*+*+*+*˛ˇH+*ˇˇ*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*˝ˇ+*+ˇ+*ˇ+*˝ˇ+*+*+*+*+˛ˇ&+*ˇ+ˇ+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$˛+*$ˇˇ$˛+*ˇˇˇ$˛ˇ*$˛+*$˛+ˇˇ+ˇˇ+ˇ$˛+ˇ$ˇ*$ˇ*$ˇ*ˇ+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$ˇ*$+ˇ$˛+ˇ$˛+*ˇ˛+ˇˇ+ˇ$+ˇ$˛ˇ*ˇ˛+*$˛+ˇ$˛+*ˇ+*ˇ+ˇ$˛+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇd˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯/ˇ++*++*++*++*++*++*++*++*ˇ+*+ˇˇ*ˇ+ˇˇ+˛ˇr+*ˇ+*ˇˇ*++ˇˇˇ*ˇˇ*+ˇ+*++*+ˇ*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*+ˇ+*+ˇ*ˇˇ*ˇˇ*+˛ˇA+ˇ*+ˇ*ˇ+*ˇˇ+*ˇˇ*ˇ+ˇ++*++ˇ++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*ˇ+*ˇˇˇ+*ˇˇ+*ˇˇ*ˇ+*ˇ+ˇˇˇˇ+ˇˇ+ˇˇ*ˇˇ*+ˇ+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*ˇ*+ˇˇ+ˇˇ+ˇ+ˇˇ+ˇ+ˇˇ+ˇˇˇ*ˇ+ˇˇ+*ˇ+ˇˇ+*ˇ+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯#ˇ*$+*$+*$+*$+*$+*$+*$+*$+ˇ$˛ˇ˛+ˇ$ˇˇ$ˇˇ$˛+ˇ$+ˇ$˛+*ˇ+ˇ$˛+ˇ$˛+*ˇ+*ˇ+*ˇˇ*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*ˇ+ˇˇ˛+ˇ$˛+ˇ$˛+*ˇC˛+ˇ$˛+*$˛+ˇ$˛+*ˇ+ˇ$˛+ˇ$ˇ*$ˇ*$˛+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇY˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯!ˇ+*++*++*++*++*++*++*++*++˘ˇ
  547. *+ˇ+ˇˇˇ*ˇ˝ˇ+*ˇ+*˛ˇ*+ˇ+ˇ++*˝ˇG+ˇˇ+ˇˇ*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*¸ˇ˛ˇ
  548. ˇ*+ˇˇ*ˇˇ*˝ˇ+ˇ*+˛ˇ    ++ˇ+ˇ+*+˝ˇ%+ˇˇˇˇ++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇc˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*˛ˇ*+ˇ+*+ˇˇ+*+*+*+*ˇ+*+*ˇ+*ˇ+*ˇ+*+*+ˇ+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*¸ˇI+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$ˇ*$˛+ˇˇ˛+ˇˇ˛+*ˇ˛ˇ*ˇ˛ˇ*$˛ˇˇ$+*$˛+ˇˇ˛+*ˇ˛+ˇˇ˛+ˇ$˛ˇ*ˇ˛+*$˛ˇ*ˇ˛ˇ*ˇˇˇ$ˇˇ$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*ˇ+ˇ$+ˇˇ˛+*ˇ˛+*ˇ˛ˇ*ˇ˛+*ˇ˛+ˇˇ˛+ˇˇ˛+*ˇ+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*+ˇ+*ˇˇ*ˇˇ*ˇ+*ˇˇ+ˇ+ˇ+ˇ+ˇ*++*ˇˇˇ+ˇ*+ˇˇ*ˇˇ*+ˇˇ*+ˇ+ˇ+ˇ*ˇˇ+ˇ+ˇ+*ˇ+ˇ++*++*++*++*++*+ˇ*++*++*+6+*++*++*++*++*++*++*++ˇ++ˇ+ˇˇ*+ˇˇ*+ˇˇ*+ˇ+ˇ++*˛ˇ0*+ˇˇ*ˇ+*ˇˇ*++*++*++*++*++*++*++*++*++*˛ˇ`˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*˛ˇ+ˇˇ+ˇˇ+*ˇˇ*ˇˇ*ˇ+ˇ+*¸ˇ +ˇ+ˇˇ+ˇ¸ˇ*ˇ+*ˇˇ*ˇˇ*˝ˇ+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*ˇ+*ˇˇˇˇˇˇˇˇ*ˇ+ˇˇˇˇˇˇˇ+*ˇ+ˇ+*+*+*+*+*+* +*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*ˇ+*$˛+ˇ$˛+ˇ$+ˇˇˇ*ˇˇ*$˛+*$ˇ*$ˇ*$˛+*ˇ˛+ˇ$˛+*ˇ˛+*$ˇ*$˛+ˇˇˇ*ˇ+ˇ$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ˛+*ˇ˛+*ˇ˛+*ˇˇ*$˛+*ˇ˛+*ˇ˛+ˇ$+ˇ$˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ`˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯.ˇ++*++*++*++*++*++ˇ++*ˇˇ*ˇˇ*+ˇˇ+ˇ+ˇ+˛ˇ +*+ˇ+*+ˇ+*+ˇˇ*ˇˇ*ˇ+ˇ+ˇˇ*+ˇˇ+˝ˇM+ˇ++ˇˇ+*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*+ˇ+*+ˇ*˛ˇ*+ˇˇ*+˛ˇ+ˇ+*+˚ˇ.*ˇˇ*++ˇ++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+ˇˇ+*+*+*ˇ+*+*ˇ+*+*+*ˇ+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ˛+ˇ$+*$+*ˇ˛+*$+*$+ˇ$+*$+*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇc˛%ˇ+*+*+*+*+*+*+*+*+*+˝ˇ*+*ˇ+*ˇ*˝ˇ1+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$˛ˇ*ˇˇ*$˛ˇ*ˇ˛+*ˇ+*ˇˇˇ$ˇˇ$ˇ*ˇˇ*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛3ˇ*++*++*++*++*++*++*++*++*++ˇ++*ˇˇ+ˇ+ˇ+ˇ+˛ˇ7+ˇ++ˇ+ˇ+*+ˇˇ+ˇ+ˇ+ˇ+*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*ˇ+*ˇˇ*ˇˇ*ˇ+*ˇˇ+*ˇ+*ˇˇ*ˇˇ*ˇˇ*ˇˇ*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛(ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$˛˛ˇBˇ*ˇˇ*$˛ˇ*ˇˇ*$ˇ*ˇ+ˇ$ˇ*ˇˇ*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ_˛%ˇ+*++*++*++*++*++*++*++*++*+˘ˇ
  549. +ˇ+ˇˇ+ˇ+ˇ+˝ˇ+ˇ++˛ˇ(+*ˇˇ*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇòÅl@ÄlHHˆt¨&ùIJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  550. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Äl 2
  551. û'e˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇz˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯Åˇìˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇa˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯=ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˝ˇ+*ˇ*+ˇ+˝ˇ*+*+*+*+*˛ˇ
  552. +*ˇˇ*+˛ˇ+*+*+*+*ˇ+*ˇ+*+*+*˝ˇO+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$ˇˇ$˛+*ˇˇˇ$˛ˇ*$˛+*$˛+ˇˇ+ˇˇ+ˇ$˛+ˇ$ˇ*$ˇ*$ˇ*ˇ+*ˇ+*ˇˇˇ$ˇˇ$˛ˇˇ$˛ˇˇ*$˛ˇ*$˛+*$+ˇ$+*ˇ˛ˇ*$˛ˇˇ$˛˛ˇA+*ˇ˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇd˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*+ˇˇ*ˇ+ˇˇ+˛ˇ/+*ˇ+*ˇˇ*++ˇˇˇ*ˇˇ*+ˇ+*++*+ˇ*++ˇ++*+ˇ+*+˛ˇh+ˇ+ˇ+ˇ+ˇ+ˇ+ˇˇ++*+ˇ*++ˇ+ˇ+ˇ+ˇ*ˇˇ+ˇ+ˇ*+ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇc˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*ˇˇˇ+*ˇˇ+*ˇˇ*ˇ+*ˇ+ˇˇˇˇ+ˇˇ+ˇˇ*ˇˇ*+ˇ+*ˇ+ˇˇˇ*ˇˇ*ˇˇ+*ˇˇ*ˇˇ*ˇ+*ˇ+*+˝ˇ*ˇˇ*ˇ+ˇˇˇ*ˇ+˝ˇ;*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯?ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$˛ˇ˛+ˇ$ˇˇ$ˇˇ$˛+ˇ$+ˇ$˛+*ˇ+ˇ$˛+ˇ$˛+*ˇ+*ˇ+*ˇˇ*$ˇ*$ˇ*ˇ+ˇ$ˇˇ$ˇ*ˇˇ*ˇˇ*$˛+*ˇ+*$˛+*$ˇ*ˇˇ*$˛+ˇˇˇ*$˛+*$+*$+*$+*$+*$+*$'+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇX˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯=ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˘ˇ
  553. *+ˇ+ˇˇˇ*ˇ˝ˇ+*ˇ+*˛ˇ*+ˇ+ˇ++*˝ˇ    +ˇˇ+ˇˇ*+˝ˇ+ˇ++˚ˇ+ˇ+ˇ+ˇ+ˇˇ+ˇ*++*˝ˇ+ˇ+ˇ+˛ˇFˇˇ+ˇ+*+ˇˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+ˇ+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*j$˛+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇe˛nˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¯ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++j*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇe˛nˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¯ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$j+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇe˛nˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¯ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+j+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇe˛nˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¯ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*j+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇe˛nˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¯ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*j$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ
  554. ˛èˇ¯Åˇìˇ
  555. ¸ëˇˆÅˇïˇ
  556. ¸ëˇˆÅˇïˇÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅï
  557. ˛ÅˇÅˇöˇˇn˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$f+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*e+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇòÅlħlHHˆt∞&ûIJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  558. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêħl
  559. 2.û'm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇm˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+e+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+e*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇm˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$e+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*e+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇm˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+e+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+e*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇm˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$e+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*e+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇˇ˛+*$+*$+*$˛+*$+*$+*$+ˇˇ˛ˇ*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇk˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+3+*++*++*++*++*++*++*++*+ˇ+*+ˇ+ˇ++ˇˇ+ˇˇˇˇ+¸ˇ*++*++*+ˇˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++,*++*++*++*++*++*++*++*++*++*++*++*˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇˇ+*ˇ+ˇˇ+*ˇˇ*ˇ+ˇˇ+ˇ+*ˇ+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+e*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇm˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇˇ+ˇ$˛+ˇ$+ˇˇ˛ˇˇ$˛+ˇ$˛+*$+ˇ$+*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$e+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇ++ˇ+ˇ*ˇ+ˇ+ˇˇ++*ˇˇ*ˇ+*+ˇ+*++*+ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ+*ˇ+ˇ+ˇˇˇ*ˇ+ˇˇ+*ˇ*ˇ*ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*B+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇm˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+e+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+e*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇm˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$e+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*e+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇm˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+e+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+e*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇm˛ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$e+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇm˛ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*e++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇm˛ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*e+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇm˛ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+e*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇm˛ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+e+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˛ÅˇÅˇòˇ¸ÅˇÅˇöˇ¸ÅˇÅˇöˇÅÅï†è†É†ø
  560. d,     Helvetica    °dONLNdM(@*»Figure 1°dONLNdV)4…* (QuickDraw and the Pieces of QuickDraw GX°dONLNdKVN*"GRAPHICS
  561. °dONLNdàVb* 9The basic building block of QuickDraw GX graphics is the °dONLNd¡Vb;(~=shape°dONLNdΔV;b}). A shape is an°dONLNd÷bni(ä6Lobject that contains, among other things, a geometry of some type and a fill°dONLNd#nzå* Oproperty that specifies how the geometry should be interpreted when drawn (such°dONLNdszÜt* as framed or filled).°dONLNdäíûä*SThere are four basic types of shapes, classified by the nature of the geometry they°dONLNdfiû™s* Kcontain: geometric shapes, typographic shapes, bitmap shapes, and pictures.°dONLNd+∞+º1+•°dONLNd-∞7ºA) A °dONLNd/∞Aºã)
  562. geometric shape°dONLNd>∞ãº\)J0 contains a primitive geometry: a point, a line,°dONLNdoº7»J(‰U@a curve, a rectangle, a polygon (a series of points connected by°dONLNd∞»7‘[* Dstraight lines), or a path (a series of points connected by straight°dONLNdı‘7‡b* Dor curved lines). In addition, there are two other special geometric°dONLNd:‡7ÏF* <shape types: empty (no geometry at all) and full (covers the°dONLNdwÏ7¯¨* entire coordinate system).°dONLNdì˛+
  563. 1(&I•°dONLNdï˛7
  564. A) A °dONLNdó˛A
  565. ò)
  566. typographic shape°dONLNd®˛ò
  567. 7)W% contains text, glyphs (renditions of°dONLNdŒ
  568. 7](2U?individual characters or character combinations over which your°dONLNd7"D* ?application has direct control), or layouts (pieces of text for°dONLNdN"7.B* 6which QuickDraw GX automatically chooses and positions°dONLNdÖ.7:-* 6glyphs, given certain information by the application). u4u& (x) +
  569. 7(å6%If you’re a PostScript language whiz )Ü
  570. making the(ñ63transition to QuickDraw GX, you’ll find the article*
  571. 1“QuickDraw GX for PostScript Programmers” in this*
  572. issue helpful.•(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ -3 329 361 493]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2%%For: (Diane Wilcox) (Apple Computer, Inc.)%%Title: (Alexander_Fig 01 v.4)%%CreationDate: (6/24/93) (10:42 AM)%%BoundingBox: -3 329 361 493%%DocumentProcessColors: Black%%DocumentFonts: Helvetica%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_typography_AI3 1.0 1%%+ procset Adobe_IllustratorA_AI3 1.0 1%AI3_ColorUsage: Color%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: -4 328 364 493%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_typography_AI3 1.1 0%%Title: (Typography Operators)%%Version: 1.0 %%CreationDate:(5/31/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_typography_AI3 47 dict dup begin put/initialize            % - initialize -{/TZ where    {    pop    }    {    Adobe_typography_AI3 begin    Adobe_typography_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_typography_AI3 begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_typography_AI3 eq    {    end    } if} def% [ number value stream [ array for encoding modification ] modifyEncoding ==> [ modified array ]/modifyEncoding{    /_tempEncode exch ddef        % pointer for sequential encodings    /_pntr 0 ddef        {        % get bottom object        counttomark -1 roll        % is it a mark ?        dup type dup /marktype eq                 {            % exit            pop pop exit        }        {            % ... object ... type ....            % insert if a nametype            /nametype eq            {                % insert the name at _pntr and increment pointer                _tempEncode /_pntr dup load dup 3 1 roll 1 add ddef 3 -1 roll                put            }            {                % reset _pntr if it's a number                /_pntr exch ddef                                }            ifelse        }        ifelse    }    loop            % return the modified encoding    _tempEncode}def/TE    % Set std platform encoding     % (encoding pairs) TE -{    StandardEncoding 256 array copy modifyEncoding     /_nativeEncoding exch def} def% re-define font% expected arguments% for 'normal fonts : % [ /_Helvetica-Bold/Helvetica-Bold direction fontScript defaultEncoding TZ%% for cartographic, pictographic, and expert fonts :% [ ... number value stream ... /_Symbol/Symbol %    direction fontScript defaultEncoding TZ% for blended fonts w/ default encoding :% [ /_AdobeSans_20ULig1XCond-Bold/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ% for blended fonts w/ special encoding :% [ ... number value stream ... /_AdobeSans_20ULig1XCond/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ/TZ        {    % set weight vector (if present)    dup type /arraytype eq {/_wv exch def} {/_wv 0 def} ifelse     % platform dependent coding flag    /_useNativeEncoding exch def    % pop fontScript & direction    pop pop        % create a new dictionary with length    % equal to original dictionary length + 2    % copy all the key/value pairs except FID    % call makeblended font with the weight values if _wv is an array    findfont _wv type /arraytype eq {_wv makeblendedfont} if dup length 2 add dict        begin            % copy all the values but the FID        % into the new dictionary        mark exch        {            1 index /FID ne { def } if cleartomark mark        }        forall        % discard last mark        pop                % define FontName        /FontName exch def                % if no re-encoding stream is present        % then if the base encoding vector of the font        % is the same as StandardEncoding        % and the use platform encoding flag is true        % then install AI platform encoding        % else leave the base encoding in effect        counttomark 0 eq        {            1 _useNativeEncoding eq            {                /Encoding _nativeEncoding def            }            if            % clean up            cleartomark        }        {                % custom encoding to be done            % start off with a copy of the font's standard encoding            /Encoding load 256 array copy             modifyEncoding /Encoding exch def        }        ifelse                FontName currentdict    end        % register the new font    definefont pop}def% text painting operators/tr                    % string tr ax ay string {_ax _ay 3 2 roll} def/trj                % string trj cx cy fillchar ax ay string {_cx _cy _sp _ax _ay 6 5 roll} def/a0{/Tx    % text                            % textString Tx -    {    dup     currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    dup    currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    } ddef    } def/a1{/Tx    % text                            °¿ % textString Tx -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    grestore 3 1 roll moveto tr sp    } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp    } ddef    } def/e0{/Tx    % text                            % textString Tx -    {    tr _psf    } ddef/Tj    % justified text                % textString Tj -    {    trj _pjsf    } ddef} def/e1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave     tr _psf      grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave     trj _pjsf    grestore 3 1 roll moveto tr sp     } ddef} def/i0{/Tx    % text                            % textString Tx -    {    tr sp    } ddef/Tj    % justified text                % textString Tj -    {    trj jsp    } ddef} def/i1{W N} def/o0{/Tx    % text                            % textString Tx -    {    tr sw rmoveto    } ddef/Tj    % justified text                % textString Tj -    {    trj swj rmoveto    } ddef} def/r0{/Tx    % text                            % textString Tx -    {    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    trj _ctm _pjss    } ddef} def/r1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    tr _ctm _pss     grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp     } ddef} def% font operators% Binding/To    % begin text                     % bindType To -{    pop _ctm currentmatrix pop} def/TO    % end text                    % TO -{    Te _ctm setmatrix newpath} def% Text paths/Tp    % begin text path                % a b c d tx ty startPt Tp -{    pop _tm astore pop _ctm setmatrix     _tDict begin /W {} def /h {} def} def/TP    % end text path                    % TP -{    end    iTm 0 0 moveto} def% Render mode & matrix operators/Tr    % begin render                    % render Tr - {    _render 3 le {currentpoint newpath moveto} if    dup 8 eq {pop 0} {dup 9 eq {pop 1} if} ifelse    dup /_render exch ddef    _renderStart exch get load exec} def/iTm % internal set text matrix        % - iTm -    (uses _tm as implicit argument){_ctm setmatrix _tm concat 0 _rise translate _hs 1 scale} def/Tm % set text matrix                % a b c d tx ty Tm -{_tm astore pop iTm 0 0 moveto} def/Td % translate text matrix         % tx ty Td -{_mtx translate _tm _tm concatmatrix pop iTm 0 0 moveto} def/Te    % end render                    % - Te -{    _render -1 eq {} {_renderEnd _render get dup null ne {load exec} {pop} ifelse} ifelse    /_render -1 ddef} def% Attributes/Ta    % set alignment                    % alignment Ta -{pop} def/Tf    % set font name and size        % fontname size Tf -{dup 1000 div /_fScl exch ddefexch findfont exch scalefont setfont} def/Tl    % set leading                    % leading paragraphLeading Tl -{pop0 exch _leading astore pop} def/Tt    % set user tracking                % userTracking Tt -{pop} def/TW % set word spacing                % minSpace optSpace maxSpace TW -{3 npop} def/Tw    % set computed word spacing        % wordSpace Tw{/_cx exch ddef} def/TC % set character spacing            % minSpace optSpace maxSpace TC -{3 npop} def/Tc    % set computed char spacing     % charSpace Tc -{/_ax exch ddef} def/Ts % set super/subscripting (rise)    % rise Ts -{/_rise exch ddefcurrentpointiTmmoveto} def/Ti    % set indentation                % firstStartIndent otherStartIndent stopIndent Ti -{3 npop} def/Tz % set horizontal scaling        % scalePercent Tz -{100 div /_hs exch ddefiTm} def/TA % set pairwise kerning            % autoKern TA -                                    %    autoKern = 0 -> no pair kerning                                    %             = 1 -> automatic pair kerning{pop} def/Tq % set hanging quotes            % hangingQuotes Tq -                                    %    hangingQuotes     = 0 -> no hanging quotes                                    %                     = 1 -> hanging quotes{pop} def% Text Bodies/TX {pop} def%/Tx    % non-justified text            % textString Tx -%/Tj    % justified text                % textString Tj -/Tk    % kern                            % autoKern kernValue Tk -                                    %      autoKern = 0 -> manual kern, = 1 -> auto kern                                    %    kernValue = kern value in em/1000 space{exch pop _fScl mul neg 0 rmoveto} def/TK    % non-printing kern                % autoKern kernValue TK -{2 npop} def/T* % carriage return & line feed    % - T* -{_leading aload pop neg Td} def/T*- % carriage return & negative line feed    % - T*- -{_leading aload pop Td} def/T-    % print a discretionary hyphen    % - T- -{_hyphen Tx} def/T+    % discretionary hyphen hyphen    % - T+ -{} def/TR    % reset pattern matrix             % a b c d tx ty TR -{_ctm currentmatrix pop     _tm astore pop iTm 0 0 moveto } def/TS    % special chars                    % textString justified TS -{0 eq {Tx} {Tj} ifelse} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_IllustratorA_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Abbreviated Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_IllustratorA_AI3 61 dict dup begin put% initialization/initialize                % - initialize -{% 47 vars, but leave slack of 10 entries for custom Postscript fragmentsuserdict /Adobe_IllustratorA_AI3_vars 57 dict dup begin put% paint operands/_lp /none def/_pf {} def/_ps {} def/_psf {} def/_pss {} def/_pjsf {} def/_pjss {} def/_pola 0 def/_doClip 0 def% paint operators/cf    currentflat def    % - cf flatness% typography operands/_tm matrix def/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def /_renderEnd [null null null null /i1 /i1 /i1 /i1] def/_render -1 def/_rise 0 def/_ax 0 def            % x character spacing    (_ax, _ay, _cx, _cy follows awidthshow naming convention)/_ay 0 def            % y character spacing/_cx 0 def            % x word spacing/_cy 0 def            % y word spacing/_leading [0 0] def/_ctm matrix def/_mtx matrix def/_sp 16#020 def/_hyphen (-) def/_fScl 0 def/_cnt 0 def/_hs 1 def/_nativeEncoding 0 def/_useNativeEncoding 0 def/_tempEncode 0 def/_pntr 0 def/_tDict 2 dict def% typography operators/Tx {} def/Tj {} def% compound path operators/CRender {} def% printing/_AI3_savepage {} def% color operands/_gf null def/_cf 4 array def/_if null def/_of false def/_fc {} def/_gs null def/_cs 4 array def/_is null def/_os false def/_sc {} def/_i null defAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3    {    dup xcheck        {        bind        } if    pop pop    } forallendendAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3_vars beginnewpath} def/terminate                % - terminate -{endend} def% definition operators/_                    % - _ nullnull def/ddef                % key value ddef -{Adobe_IllustratorA_AI3_vars 3 1 roll put} def/xput                % key value literal xput -{dup load dup length exch maxlength eq    {    dup dup load dup    length 2 mul dict copy def    } ifload begin def end} def/npop                % integer npop -{    {    pop    } repeat} def% marking operators/sw                    % ax ay string sw x y {dup length exch stringwidthexch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add} def/swj                % cx cy fillchar ax ay string swj x y{dup 4 1 rolldup length exch stringwidth exch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add 6 2 roll /_cnt 0 ddef{1 index eq {/_cnt _cnt 1 add ddef} if} forall popexch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop} def/ss                    % ax ay string matrix ss -{4 1 roll    {                % matrix ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put pop    gsave    false charpath currentpoint    4 index setmatrix    stroke    grestore    moveto    2 copy rmoveto    } exch cshow3 npop} def/jss                % cx cy fillchar ax ay string matrix jss -{4 1 roll    {                % cx cy fillchar matrix ax ay char 0 0 {proc} -       2 npop     (0) exch 2 copy 0 exch put     gsave    _sp eq         {        exch 6 index 6 index 6 index 5 -1 roll widthshow          currentpoint        }        {        false charpath currentpoint        4 index setmatrix stroke        }ifelse    grestore    moveto    2 copy rmoveto    } exch cshow6 npop} def% path operators/sp                    % ax ay string sp -{    {    2 npop (0) exch    2 copy 0 exch put pop    false charpath    2 copy rmoveto    } exch cshow2 npop} def/jsp                    % cx cy fillchar ax ay string jsp -{    {                    % cx cy fillchar ax ay char 0 0 {proc} -°¿     2 npop     (0) exch 2 copy 0 exch put     _sp eq         {        exch 5 index 5 index 5 index 5 -1 roll widthshow          }        {        false charpath        }ifelse    2 copy rmoveto    } exch cshow5 npop} def% path construction operators/pl                % x y pl x y{transform0.25 sub round 0.25 add exch0.25 sub round 0.25 add exchitransform} def/setstrokeadjust where    {    pop true setstrokeadjust    /c                % x1 y1 x2 y2 x3 y3 c -    {    curveto    } def    /C    /c load def    /v                % x2 y2 x3 y3 v -    {    currentpoint 6 2 roll curveto    } def    /V    /v load def    /y                % x1 y1 x2 y2 y -    {    2 copy curveto    } def    /Y    /y load def    /l                % x y l -    {    lineto    } def    /L    /l load def    /m                % x y m -    {    moveto    } def    }    {%else    /c    {    pl curveto    } def    /C    /c load def    /v    {    currentpoint 6 2 roll pl curveto    } def    /V    /v load def    /y    {    pl 2 copy curveto    } def    /Y    /y load def    /l    {    pl lineto    } def    /L    /l load def    /m    {    pl moveto    } def    }ifelse% graphic state operators/d                    % array phase d -{setdash} def/cf    {} def            % - cf flatness/i                    % flatness i -{dup 0 eq    {    pop cf    } ifsetflat} def/j                    % linejoin j -{setlinejoin} def/J                    % linecap J -{setlinecap} def/M                    % miterlimit M -{setmiterlimit} def/w                    % linewidth w -{setlinewidth} def% path painting operators/H                    % - H -{} def/h                    % - h -{closepath} def/N                    % - N -{_pola 0 eq     {    _doClip 1 eq {clip /_doClip 0 ddef} if     newpath    }     {    /CRender {N} ddef    }ifelse} def/n                    % - n -{N} def/F                    % - F -{_pola 0 eq     {    _doClip 1 eq         {        gsave _pf grestore clip newpath /_lp /none ddef _fc         /_doClip 0 ddef        }        {        _pf        }ifelse    }     {    /CRender {F} ddef    }ifelse} def/f                    % - f -{closepathF} def/S                    % - S -{_pola 0 eq     {    _doClip 1 eq         {        gsave _ps grestore clip newpath /_lp /none ddef _sc         /_doClip 0 ddef        }        {        _ps        }ifelse    }     {    /CRender {S} ddef    }ifelse} def/s                    % - s -{closepathS} def/B                    % - B -{_pola 0 eq     {    _doClip 1 eq     % F clears _doClip    gsave F grestore         {        gsave S grestore clip newpath /_lp /none ddef _sc        /_doClip 0 ddef        }         {        S        }ifelse    }    {    /CRender {B} ddef    }ifelse} def/b                    % - b -{closepathB} def/W                    % - W -{/_doClip 1 ddef} def/*                    % - [string] * -{count 0 ne     {    dup type (stringtype) eq {pop} if    } if _pola 0 eq {newpath} if} def% group operators/u                    % - u -{} def/U                    % - U -{} def/q                    % - q -{_pola 0 eq {gsave} if} def/Q                    % - Q -{_pola 0 eq {grestore} if} def/*u                    % - *u -{_pola 1 add /_pola exch ddef} def/*U                    % - *U -{_pola 1 sub /_pola exch ddef _pola 0 eq {CRender} if} def/D                    % polarized D -{pop} def/*w                    % - *w -{} def/*W                    % - *W -{} def% place operators/`                    % matrix llx lly urx ury string ` -{/_i save ddef6 1 roll 4 npopconcat popuserdict begin/showpage {} def0 setgray0 setlinecap1 setlinewidth0 setlinejoin10 setmiterlimit[] 0 setdashnewpath0 setgrayfalse setoverprint} def/~                    % - ~ -{end_i restore} def% color operators/O                    % flag O -{0 ne/_of exch ddef/_lp /none ddef} def/R                    % flag R -{0 ne/_os exch ddef/_lp /none ddef} def/g                    % gray g -{/_gf exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _gf setgray    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/G                    % gray G -{/_gs exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _gs setgray    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/k                    % cyan magenta yellow black k -{_cf astore pop/_fc{_lp /fill ne    {    _of setoverprint    _cf aload pop setcmykcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/K                    % cyan magenta yellow black K -{_cs astore pop/_sc{_lp /stroke ne    {    _os setoverprint    _cs aload pop setcmykcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/x                    % cyan magenta yellow black name gray x -{/_gf exch ddeffindcmykcustomcolor/_if exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _if _gf 1 exch sub setcustomcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/X                    % cyan magenta yellow black name gray X -{/_gs exch ddeffindcmykcustomcolor/_is exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _is _gs 1 exch sub setcustomcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def% locked object operator/A                    % value A -{pop} defcurrentdict readonly pop endsetpacking% annotate page operator/annotatepage{} def%%EndResource%%EndProlog%%BeginSetup%%IncludeFont: HelveticaAdobe_cmykcolor /initialize get execAdobe_cshow /initialize get execAdobe_customcolor /initialize get execAdobe_typography_AI3 /initialize get execAdobe_IllustratorA_AI3 /initialize get exec[39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caronTE%AI3_BeginEncoding: _Helvetica Helvetica[/_Helvetica/Helvetica 0 0 1 TZ%AI3_EndEncoding TrueType%%EndSetup0 A0 O0 g0 i 0 J 0 j 1 w 4 M []0 d%AI3_Note:0 D360 376.5 m360 488 L125.25 488 L125.25 376.5 L360 376.5 Lfu1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G358 414.5 m358 490 L123.25 490 L123.25 414.5 L358 414.5 Lb240.625 452.25 mBU0 g360 330.75 m360 366.75 L2 366.75 L2 330.75 L360 330.75 Lf113.5 376.5 m113.5 488 L2 488 L2 376.5 L113.5 376.5 Lf1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G358 378.5 m358 414.5 L123.25 414.5 L123.25 378.5 L358 378.5 Lb358 332.75 m358 368.75 L0 368.75 L0 332.75 L358 332.75 Lb111.5 378.5 m111.5 490 L0 490 L0 378.5 L111.5 378.5 Lbu0 To1 0 0 1 55.75 432 0 TpTP-19.5527 0 Td0 Tr0 g/_Helvetica 8 Tf0 Ts100 Tz0 Tt0 TA0 0 5 TC100 100 200 TW0 0 0 Ti1 Ta0 Tq9 0 Tl0 Tc0 Tw(QuickDraw) Tx (\r) TX TO0 To1 0 0 1 181.9375 453.75 0 TpTP-26.4434 0 Td0 Tr(QuickDraw GX) Tx(\r) TX -9.5596 -9 Td(Printing Architecture) Tx (\r) TX TO0 To1 0 0 1 299.3125 453.75 0 TpTP-26.4434 0 Td0 Tr(QuickDraw GX) Tx(\r) TX 5.3271 -9 Td(Typography) Tx (\r) TX TO0 To1 0 0 1 240.625 393.375 0 TpTP-57.1172 0 Td0 Tr(QuickDraw GX Graphics Engine) Tx (\r) TX TO0 To1 0 0 1 179 347.625 0 TpTP-20.0039 0 Td0 Tr(System 7.1) Tx (\r) TX TOU0 R0 G240.625 489.9375 m240.625 414.5 lS%AI3_BeginCropsuserdict /AI3_noCropMarks known not {uu0.5 w-13 328 m-40 328 LS-4 319 m-4 292 LSUu-13 493 m-40 493 LS-4 502 m-4 529 LSUu373 493 m400 493 LS364 502 m364 529 LSUu373 328 m400 328 LS364 319 m364 292 LSUU} if%AI3_EndCrops%%PageTrailergsave annotatepage grestore showpage%%TrailerAdobe_IllustratorA_AI3 /terminate get execAdobe_typography_AI3 /terminate get execAdobe_customcolor /terminate get execAdobe_cshow /terminate get execAdobe_cmykcolor /terminate get execA°¿+dobe_packedarray /terminate get exec%%EOF¿◊#ˇ ˇˇˇˇ#◊ 
  573. d, Palatino
  574. .°dONLNd©$Ø+«@•°dONLNdµ$ø) A °dONLNdø$˛)
  575. bitmap shape°dONLNd˛$∂)?* contains a reference to a block of memory°dONLNd;$µ0€(L”Bcontaining a bit image, as well as information on how to interpret°dONLNd~0µ<Œ* Dthe bits: the pixel size, color space, color set, and color profile.°dONLNd√B©NØ(j«•°dONLNd≈BµNø) A °dONLNd«BøNfl)
  576. picture°dONLNdŒBflN–) 8 contains a list of other shapes. The shapes in the list°dONLNdNµZÿ(v”Ccan be other pictures, so that a picture is actually a hierarchical°dONLNdKZµf* database of shapes.°dONLNd_rñ~˝(ö¥QBesides containing a geometry, a shape contains references to three other objects°dONLNd±~ñä
  577. * Tthat describe how it should be rendered. These objects are the style, the transform,°dONLNdäññÕ* and the ink.°dONLNdú©®Ø+•°dONLNdúµ®…) The °dONLNdú…®‡)style°dONLNdú‡®«)3 defines the pen thickness, the place where the pen°dONLNdR®µ¥◊(–”Bdraws (inside, outside, or on the geometry), the kind of start and°dONLNd掠¿ÿ* Cend cap (such as round, pointy, or square), and ways to dash, join,°dONLNdŸ¿µÃ“* @and pattern shapes. For a text shape, the style also defines the°dONLNdõÿQ* %font, size, variation, and text face.°dONLNd@fi©ÍØ(«•°dONLNdBfiµÍ…) The °dONLNdFfi…Íı)    transform°dONLNdOfiıÍŸ),4 controls the skew, scale, perspective, and clipping°dONLNdÑ͵ˆ€(”Bof the geometry. It also specifies where to draw it and how to hit°dONLNdΔÍ€ˆfl(˘-°dONLNd«ˆµ”(”test it.°dONLNd–©Ø(0«•°dONLNd“µ…) The °dONLNd÷…ÿ)ink°dONLNdŸÿ‹): tells the system which color to draw the geometry in. Ink°dONLNdµ “(<”?also includes information about the color matching and transfer°dONLNdT µ,–* mode.°dONLNdZ8ñDÒ(`¥QSome of these objects in turn contain references to other objects. For example, a°dONLNd¨DñP* transform points to a list of °dONLNd DP>)|    view port°dONLNd”D>PÒ),( objects that describe where to draw the°dONLNd¸Pñ\ˇ(x¥Pgeometry. A view port is like a QuickDraw grafPort in that it defines an area of°dONLNdM\ñhÚ* Llocal space as a drawing environment. Unlike a grafPort, though, a view port°dONLNdöhñtÌ* Ldoesn’t contain state information about the drawing environment (pen, color,°dONLNdÁtñÄ* Ttransfer mode, and so on). A view port contains the mapping used to convert from the°dONLNd<Äñåé* 9view port’s local space to a global space described by a °dONLNduÄéå¿)¯
  578. view group°dONLNdÄ¿å˚)2. A view port°dONLNdçåñò(¥¥#object points in turn to a list of °dONLNd∞åòW)à view device °dONLNdºåWò)9'objects, which describe the clip shape,°dONLNd‰òñ§Á(¿¥Hmapping, and bitmap associated with a physical device such as a monitor.°dONLNd-∞ñº2*"A shape can also have one or more °dONLNdO∞2º_)ú
  579. attributes°dONLNdY∞_º )-$, which modify the shape’s behavior.°dONLNd~ºñ»(‰¥PThese attributes enable your application to specify how a shape is edited or how°dONLNdœ»ñ‘Ì* JQuickDraw GX stores the shape. For example, if you set the shape attribute°dONLNd‘ñ‡* KgxMapTransformShape, this tells QuickDraw GX that you want it to manipulate°dONLNdf‡ñÏ* Pthe transform referenced by the shape, instead of directly manipulating the data°dONLNd∑Ïñ¯`* +contained within the geometry of the shape.°dONLNd„ñ*Figure 2 depicts the shape°dONLNd˝)w °dONLNd˛Ê)1object and what it references. The owner count is°dONLNd    /ÊË)◊ °dONLNd    0˯)the°dONLNd    4ñ(8¥Rnumber of other objects within the application that reference that object. The tag°dONLNd    áñ(* Wlist is a list of tag objects, which are simply containers for any data the application°dONLNd    fl(ñ4/* "associates with the owning object. uBu/ (x/ ,     Helvetica+
  580. 8+Ç
  581. -Shapes are completely resolution independent,*
  582. 4which enables accurate representation at any size to*
  583. the screen or printer.•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇ¨Í◊#ˇ ˇˇˇˇ#◊ 
  584. 66"66°d
  585. ONLNfH"°d
  586. ONLNfᙆdžé
  587. 45566ò<@fi@fi66v≈≈ Ó Äfi Ózò3ì3Äfl Ó*§JT…fi Ó*ºJW¡fi Ó*†JTIfi Ó4ú3ì±Äfl    Ì›    Ì 0›≈≈
  588. ıÔˇ¸Â
  589. ıÔˇ¸ÂıÓˇÂıÓˇÂıÓˇÂıӡ    ˆӡ    ˆÔÓˇÂˆÏˇÂ    ˆÉÔӡ    ˆáèӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄÓˇÂò<@Äfi@Äfiv6∂    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄӡ    ˆÄÓˇÂ9˛Ñ@Äӡ EÁ„‰f‡Äӡ q)îâîô@Äӡ 'óâî¯@Äӡ E)î    îâ@Äӡ 9/„܉v`Äӡ½ĽÄÓˇÂ˝Ä ˝Äӡ    ˆÄӡ    ˆÄӡ ¯ˇÄӡ ¯ˇÄӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿ÄÓˇÂò<Ä¢fiÄ¢fi∂6ÿ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿ÄÓˇÂòÅfi@fiHHˆtê&üIJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  590. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@fi66v'ÅÅÅ£ÅÅÅ£"Å¡˛ˇ˛ˇ¸ˇÙˇ˝ˇˆˇÅÅÎ5ÅÊˇ˛ˇ˝ˇˇˇˇˇ¸ˇˇ˛ˇ ˇˇˇˇˇ˛ˇÅÅÏ5ÅÊ˛ˇ˝ ˇˇˇˇˇˇ˛ˇˇˇˇˇˇˇˇˇˇÅÅÎ3Å„ˇ˛ˇˇˇˇˇ˛ˇˇ˛ˇˇˇˇ˛ˇˇ˛ˇˇ¸˛ÅÅÎ5ÅÊˇ˛ ˇˇˇˇˇˇ˚ ˇˇˇˇˇˇ˛ˇˇˇÅÅÎ4Ųˇ˛ˇˇˇˇ˛ˇ˝ˇˇ˛ˇˇ˛ˇˇˇ˛ˇˇÅÅÏÅ‹˛ÏˇÅÅflÅ›ˇˇÌˇˇÅÅflÅÅÅ£ÅÅÅ£
  591. ùŎÁˇÅ°¢ùˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇÅ°£ùˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ££ùˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ££ùˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ££ùˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£•§˛ˇ˝ˇ+*++*++*++*++*++*+˛ˇP+*++*++*++*+ˇ*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*+˝ˇ'+*++*++*ˇ+*++*++*++*++*++*++*+˛ˇÅ£•£¸ˇ"ˇ*+*+*+*+*+*+ˇˇ*ˇˇ*˛ˇ    *+*ˇ+ˇ˛ˇBˇˇ+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+ˇ+*ˇˇ+˛ˇ +*ˇˇ+*+*+*+*+*+*+*+˛ˇÅ£§©Ùˇ+*$+*$+*$+*$+*$+*$˛+*ˇˇ*$˛ˇ*ˇ+*$˛+*$˛+*$˛+ˇ$ˇ*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$˛+*$˛+*ˇ˛+ˇ$+ˇ$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£§©ˇ¸¸ˇˇ++*++*++*++*++*++*˛ˇ*+¸ˇ+ˇ++*+ˇ+*ˇ+ˇ+˝ˇ5+*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*¸ˇ&+ˇˇˇ*+ˇ*++*++*++*++*++*++*++*˛ˇÅ£´©ˇ˝˝ˇ˛ˇ+*+*+*+*+*+*ˇ+*ˇ*ˇ*ˇ+*+ˇˇ+ˇ+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*ˇ+*ˇ+*ˇˇ+ˇ+ˇ+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+ˇ$+*$˛ˇ*ˇˇ*$+*ˇ+ˇ$˛ˇˇ$ˇˇ$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*ˇ˛+ˇ$˛+*$˛+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£©ˇˆÅˇÂˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¶©ˇˆcˇ*$+*$+*$+*$+*$+*$+*$+*$+ˇˇ˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$˛ˇ1˛ˇ*$+*$+*ˇ+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¶©ˇˆ*ˇ+*++*++*++*++*++*++*++*+ˇ+*+ˇ+*ˇˇ+*˛ˇA*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++ˇˇ+ˇ+˛ˇ%+ˇˇ+ˇˇ+ˇˇ+ˇˇ++*++*++*++*++*+˛ˇÅ£¶©ˇˆyˇ*+*+*+*+*+*+*+*ˇ*+*ˇˇˇ+*ˇ+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+ˇˇ*ˇˇ*ˇ+*ˇ+*˛ˇ*ˇˇ*ˇ+*+*+*+*+*+˛ˇÅ£¶©ˇˆiˇ+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$ˇˇ$˛+ˇ$ˇ*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$˛˛ˇ++ˇ$ˇ*$ˇ*ˇ˛+ˇˇ+*ˇ˛ˇˇ$+*$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++ˇ++ˇ+ˇ+*ˇˇ*+ˇ+*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*ˇ+*+ˇ+ˇ+ˇ+*+ˇ+ˇ+ˇˇ+ˇˇ++*++*++*++*++*++*˛ˇÅ£¶©ˇˆ ˇ+*+*+*+*+*+*+*+*˛ˇ+˛ˇ+˛ˇJ+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*ˇˇˇ*ˇˇ*ˇ*˛ˇˇˇ*ˇˇ*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£©ˇˆÅˇÂˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£§©ˇˆcˇ+*+*+*+*+*+*+*+*ˇ*+*ˇ+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*¸ˇ/+*+*ˇ*+*ˇ*+*+*+*+*+*+*+*˛ˇÅ£¶©ˇˆoˇ*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+ˇˇ+ˇ$˛ˇˇ$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*ˇ˛+*ˇ˛ˇ+*$˛+*ˇ˛ˇ+ˇˇ+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++ˇ+ˇ+*ˇˇ*ˇˇ*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++ˇ+ˇ*+ˇ+ˇ+ˇ+ˇ++ˇ++ˇ++ˇ+ˇ+*ˇ+*++*++*++*++*+˛ˇÅ£§©ˇˆhˇ*+*+*+*+*+*+*+*+*ˇˇ*ˇ+ˇˇ+ˇ+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+˝ˇ*ˇ+*ˇ+*ˇ+*ˇ+ˇ˝ˇ+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*ˇˇ*ˇ+ˇ$˛+ˇ$˛+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$˛+*$ˇ*ˇˇ*$+*ˇˇ*ˇ+*ˇ+*$+*$+*$+*$+*$+*$˛ˇÅ£¶©ˇˆˇ++*++*++*++*++*++*++*++˛ˇX+*ˇˇ+*ˇˇ*ˇ+*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*+ˇˇ*+ˇ+ˇ+ˇ+*+ˇ*+ˇ+˛ˇ+*ˇˇ+*++*++*++*++*++*˛ˇÅ£ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£©ˇˆÅˇÂˇÅ£òÅfi@ÄfiHHˆtå&†Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  592. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Äfiv6∂'ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£•©ˇˆˇ++*++*++*++*++*++*++*+˝ˇv+*++*++*ˇ+*++*++*++*++*++*++*++*ˇ+*++*++*++*++*ˇ+*++*++*ˇˇ+*ˇˇ+*++*++*ˇˇ+*++*++*++*++*++*++*˛ˇÅ£¶©ˇˆ,ˇ+*+*+*+*+*+*+*ˇ*ˇ*ˇˇ*ˇ*˛ˇ;+*+*+*+*+*+*+*ˇ+*+*+*+*+*ˇ+ˇˇ+*ˇ+*˛ˇ*˛ˇ*ˇˇ*ˇˇ*˛ˇ*ˇˇ*˛ˇ+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*ˇ+*ˇ+*ˇ˛+ˇ$+ˇ$˛+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+ˇ$˛+ˇ$ˇ*$+ˇˇ+ˇˇˇ*$˛+*ˇ˛+ˇˇˇ*$˛+ˇ$˛+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++ˇ++ˇ+ˇˇ*ˇ+ˇ+ˇ*ˇ+*++*++*++*++*++*++*+ˇ*++*++*++*++*+ˇ*ˇˇ*+ˇ*+ˇˇ+ˇˇ+ˇ+*+ˇˇ*ˇˇˇ+ˇ+*ˇˇ*ˇ+*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*ˇ+*ˇˇ*ˇ+*ˇ+ˇˇ+*+*+*+*+*+*+*+ˇ+*+*+*+*ˇ+ˇˇ+ˇ+*ˇ+ˇˇ+ˇˇˇ*ˇˇ*ˇ+ˇˇˇ*ˇ+ˇˇ+*+*+*+*+˛ˇÅ£¶©ˇˆˇ+*$+*$+*$+*$+*$+*$+*$˛ˇw˛+*$˛ˇˇ$ˇ*$˛+ˇ$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+ˇˇ˛+ˇˇ˛+*$˛+*$˛ˇ*$˛ˇ*$˛ˇ*$˛ˇˇ$˛ˇ*$˛ˇ*$˛+ˇ$+*$+*$+*$+*$˛ˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£©ˇˆÅˇÂˇÅ£ß©ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ß©ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ß©ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£ß©ˇˆˇ+*$+*$+*$+*$+*$+*$+*ˇ˛ˇ*$+*$ˇ*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+ˇˇ˛ˇ*$+*$+*$˛+*$+*$+*$+ˇ$+*$ˇ*ˇ+*$+*$+*$+*$+*$+*$˛ˇÅ£πÔ˛ˇˇÈˇ˝ˇˆˇÎˇˆ$ˇ++*++*++*++*++*++*++ˇ+ˇ*ˇˇ+*˝ˇ+ˇˇ*ˇˇ+˛ˇ/+*++*++*++*++*++*++*ˇ+*++*++*+ˇ*++ˇˇ˛ˇ    +ˇˇ+ˇ++˛ˇ+*˛ˇ*+ˇˇ*ˇˇ+ˇ+ˇˇ*+˛ˇ+ˇ*++*++*++*˛ˇÅ£‘ˇ˛ˇ˝ˇ˚ˇ˛ˇˇ¸ˇˇ˛ˇˇ˛ˇˇˇˇ˛ˇÏˇˆˇ+*+*+*+*+*+*+*ˇ+ˇˇˇˇ*ˇˇ+*ˇˇ+*ˇˇ*+*+*+*+*+*+*ˇ+*+*+*+ˇ+ˇˇˇˇ+*ˇ+*ˇ+ˇˇˇˇ+ˇ+ˇˇˇ*ˇˇ+*ˇˇ*ˇˇ*+*+*+*˛ˇÅ£⁄ˇˇ˛˛˛ˇˇ˛ˇ˛ˇˇ˛ˇ˛ˇ˛ˇˇ˛ˇ˛ˇÎˇˆˇ*$+*$+*$+*$+*$+*$+*$˛ˇˇˇ$˛+*ˇ˛ˇ0˛ˇˇ$ˇ*ˇ+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$˛˛ˇ9˛+*ˇ˛+ˇ$+ˇ$+ˇ$˛ˇˇ$˛+ˇ$˛+ˇˇˇ*ˇˇˇ$ˇ*ˇˇ*$˛+*$+*$+*$+˛ˇÅ£—Ìˇˇˇˇ˝ˇˇ˝ˇ˛ ˇˇˇˇˇ¸ˇ˝ˇÎˇˆˇ+*++*++*++*++*++*++*+ˇ+*+ˇ+*ˇ+ˇ+ˇˇ*+ˇ*+ˇ+ˇ++*++*++*++*++*++*+ˇ*++*++*++*ˇ+*ˇ+ˇˇˇ*+ˇ*+ˇ*ˇˇ+*ˇˇ*ˇˇ*+ˇ+ˇ+ˇˇ*+ˇ+ˇ+ˇ+*+ˇ+*++*++*+˛ˇÅ£◊ˇ˛ˇˇˇˇˇˇˇˇ˚ ˇˇˇˇˇˇ˛ˇˇˇÎˇˆ ˇ*+*+*+*+*+*+*ˇ*+˛ˇL+*ˇˇ*ˇˇ+ˇˇ*ˇ+*+*+*+*+*+*+ˇ+*+*+*ˇ+*ˇˇˇ+ˇ+ˇ+*ˇ+˛ˇ+ˇˇ+*˛ˇ*ˇˇ*ˇˇ+*ˇˇ*ˇ+*+*+*+˛ˇÅ£◊Ô˛ˇˇˇˇ˛˛ˇ˛ˇ˛˛ˇ˝˛ˇˇ˛ˇ˛˛    ˛ˇˇ˛ˇ˛ˇÏˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£Ø·ˇÌˇflˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£∞·ˇÓˇˇflˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£ß©ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ß©ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£˛¥ˇ˘ˇˆÅˇÂˇÅ£˜˛Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ˘ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£˜˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*˛ˇN+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*˛ˇ/*ˇ+*+*ˇˇ*+*+*+*+*+*+*+*+*+˛ˇÅ£˜˛ˇ$+*$+*$+*$+*$+*$+*$+*$˛ˇ)˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+ˇ$+ˇ$˛+ˇ$˛ˇP+*ˇ˛ˇ*$+*ˇ˛+ˇˇˇˇ$ˇˇ$˛ˇ*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$˛+ˇ$˛ˇ*$˛˛ˇˇˇ$˛ˇ˛˛ˇ+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛'ˇ*++*++*++*++*++*++*++*++ˇ+ˇ*+˛ˇ +*ˇˇ+*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*+ˇ*++*ˇˇ*+ˇ+*ˇˇˇ+ˇ*+ˇ*+ˇˇ*+ˇ+*ˇ+ˇˇ+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*ˇˇ*+ˇˇ*+ˇ+ˇˇ+ˇ+ˇ+ˇ+ˇ+ˇ++*++*++*++*++*++*˛ˇÅ£Û˛Kˇ+*+*+*+*+*+*+*+*ˇ+*ˇˇˇˇ*ˇ+ˇ+*+*+*+*+*+*+˛ˇ˚ˇˆ"ˇ+*+*+*+*+ˇ+*ˇ+ˇˇ*ˇ+¸ˇ+¸ˇ5ˇ*ˇ+*ˇˇ+*+*+*+*+*ˇ+*+*+*+*+*+*˛ˇ+˛ˇ*+ˇˇ*ˇˇ+*ˇˇ*ˇˇ*ˇ+*+*+*+*+*+*˛ˇÅ£¯˛,ˇ+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ˛+*ˇ˛ˇ˛+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$˛+*$˛+ˇ$˛+*ˇ+ˇ$˛ˇ*$+*$˛+*$˛+*ˇ+ˇ$ˇˇ$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$˛ˇ*$˛+*ˇˇˇ$ˇ*ˇˇ*ˇˇ*$+*$+*$+*$+*$+*$+˛ˇÅ£˜˛Kˇ+*++*++*++*++*++*++*++*+ˇ+*+ˇ+ˇˇ+ˇ+ˇ+*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*+˛ˇ+˛ˇP+ˇ++ˇ+ˇˇ++*+ˇˇ*ˇ+ˇ++ˇˇˇ*++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*ˇ˛ˇ(+ˇ+ˇ+ˇˇ+ˇ+ˇ+ˇ+ˇ+*++*++*++*++*++*+˛ˇÅ£¯˛'ˇ+*+*+*+*+*+*+*+*ˇ*+ˇ˛ˇ +ˇˇ+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++ˇˇˇ*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£˛≤ˇ˚ˇˆÅˇÂˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ+*ˇ+ˇ+ˇ*ˇ+*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£ı˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆ@ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+˛ˇ+¸ˇ˛ˇJˇ*ˇˇˇˇˇ*ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$˛+ˇ$ˇˇ$˛+ˇ$ˇ*ˇˇ*$˛ˇ*$˛+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£Ú˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆ=ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˚ˇ*+ˇˇ*ˇˇ*+ˇ+ˇ+ˇ+*¸ˇ>+ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ*ˇˇˇˇˇ+ˇˇ*ˇˇ*ˇˇ*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£˜˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆOˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*ˇ˛+*ˇ˛+ˇ$˛ˇˇ$˛ˇE+ˇ$˛ˇ*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£òÅfiÄ¢fiHHˆtê&°Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  593. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄ¢fi∂6ÿ'¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛ˇ*++*++*++*++*++*+˛ˇ0+*++*++*++*++*++*ˇ+*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ı˛%ˇ+*+*+*+*+*ˇ*ˇ*ˇˇ*ˇˇ*¸ˇ+*ˇˇ+*˝ˇˇ+*ˇ+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£_˛Kˇ+*$+*$+*$+*$+*$+*ˇ+*$ˇ*$˛ˇ*$˛+ˇ$˛+ˇ$˛+*ˇ+ˇˇ+*ˇˇ*$+*$+*$+*$+*$˛ˇ˚ˇˆÅˇÂˇÅ£ı˛ˇ+*++*++*++*++*++ˇ+ˇˇ+¸ˇ    +*ˇˇ*ˇˇ*˝ˇ+ˇˇ++ˇ+ˇ+*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*ˇ+*ˇˇ*ˇ*ˇ+ˇˇ+ˇˇ+*+ˇˇ+*ˇˇ*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+ˇˇ˛ˇ*$˛ˇ*$˛ˇ*$˛+ˇ$˛+*ˇ˛+*$˛ˇ*$+ˇ$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*ˇˇ+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£˜˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆ7ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ]˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ˆ˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆAˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*+ˇ+ˇ+ˇ+˝ˇ*+ˇˇ+ˇˇ*++ˇˇ+ˇˇˇ*ˇ+˛ˇ7+ˇˇ+*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*ˇ*ˇˇ*ˇˇ+ˇˇ*ˇˇ*+ˇˇˇˇˇˇ+*ˇˇ*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£˜˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆIˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*ˇˇ*ˇˇˇ$˛+*ˇ˛˛ˇK+*$˛+*$˛+*ˇ˛+ˇ$ˇ*ˇ+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++ˇ+ˇ+ˇ+ˇˇ*ˇ+ˇ++ˇ++*ˇ+ˇˇ+ˇˇˇ*+ˇ+ˇ+ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ˆ˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆ7ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*˝ˇ+ˇˇ+ˇˇ+*ˇˇ*ˇ+*ˇˇˇˇ˛ˇ<ˇ*ˇ+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£˛≤ˇ˚ˇˆÅˇÂˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£¯˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£ı˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆ@ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*¸ˇR+*+*+*ˇ+ˇ+*ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛$ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$˛˛ˇ#˛+ˇ$˛+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$˛ˇ*$˛ˇˇ$+ˇ$˛+*ˇ+ˇˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£˜˛Kˇ+*++*++*++*++*++*++*++*++*ˇ+*ˇˇ*ˇ+*++*++*++*++*++*++*++*˛ˇ˚ˇˆGˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ+*+˛ˇM+ˇ*+ˇ*ˇˇ*++ˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*ˇ+*ˇ+ˇˇ+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*ˇˇ+ˇˇ+ˇ+ˇˇ+*ˇ+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+ˇˇ˛ˇˇ$˛+ˇ$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$ˇ*$˛ˇ*$˛+*$˛+ˇ$+ˇ$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£˜˛Kˇ*++*++*++*++*++*++*++*++*+ˇ*+ˇ*ˇˇ*++*++*++*++*++*++*++*+˛ˇ˚ˇˆFˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*+˛ˇ˛ˇJ+*ˇˇ*+ˇ+*+ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+ˇ+ˇˇ+ˇ+*+*+*+*+*+*+*+˛ˇ˚ˇˆˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ£¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇˆˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ£ò<@fi@fiÿ6 ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ ¯ˇ¿Äӡ    ¯ˇ¿Ä—    ¯ˇ¿Ä—    ¯ˇ¿Ä—    ¯ˇ¿Ä—    ¯ˇ¿Ä—˜ˇÄÊÄÚ¯ˇ¿ÂÃëô¿Ú¯ˇ¿ÂL&RdÄÚ¯ˇ¿ÂL&S‡ÄÚ¯ˇ¿ÂL&R$ÄÚ¯ˇ¿ÂLëÿ¿Ú ¯ˇ¿‚ ¯ˇ¿‚0¯ˇ¿–¯ˇ¿Ë¯ˇ¯˘ˇ¸¯ˇ¿Ë¯ˇ¯˘ˇ¸¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë·¯ˇ˛x¯ˇ¯ˇ¿Ë}¯ˇ˛>¯ˇ ‘ˇ˛ˆˇ¯ˇ¿Ë˝¯ˇ˛?¯ˇ¯ˇ¿Ë·¯ˇ˛x¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛¯ˇ¯ˇ¿Ë¯ˇ˛ı¯ˇ¿Ë¯ˇ˛ı¯ˇ¿Ë¯ˇ˛ı¯ˇ¿Ë¯ˇ˛ı¯ˇ¿Ë¯ˇ˛ı˜ˇÄȘˇ¯ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛ı¯ˇ¿Äȯˇ˛˘ˇ¸¯ˇ¿Äȯˇ˛˘ˇ¸¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Äȯˇ˛x¯ˇ ¯ˇ ¿Ä0!Û¯ˇ˛>¯ˇ¯ˇ ¿ÄœÓ|fl938Û¯ˇ˛ˆˇ ¯ˇ ¿Äì)2ï•LêÛ¯ˇ˛?¯ˇò<@Äfi@Äfi6X ¯ˇ ¿Äè&2ï•|Û¯ˇ˛x¯ˇ ¯ˇ ¿Äì)2ï•DêÛ¯ˇ˛¯ˇ ¯ˇ ¿Äü',ï9;Û¯ˇ˛¯ˇ¯ˇ¿Ä˙Ò¯ˇ˛¯ˇ¯ˇ¿Ä˙Ò¯ˇ˛¯ˇ¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Äȯˇ˛¯ˇ¯ˇ¿Ä¯ˇ¿Ù¯ˇ˛¯ˇ¯ˇ¿Ä¯ˇ¿Ù¯ˇ˛¯ˇ¯ˇ¿Ä¯ˇÙ¯ˇ˛¯ˇ¯ˇ¿Ä¯ˇÙ¯ˇ˛Ù¯ˇ¿Ä¯ˇÙ¯ˇ˛Ù¯ˇ¿Ä¯ˇÙ¯ˇ˛Ù¯ˇ¿áè¯ˇÙ¯ˇ˛Ù¯ˇ¿ÉÔ¯ˇÙ¯ˇ˛Ù¯ˇ¿ˆˇÙ¯ˇ˛Ù¯ˇ¿Ô¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÙ¯ˇ˛Ù¯ˇ¿¯ˇÛ˘ˇ˛Ù¯ˇ¿¯ˇÛ˘ˇ˛Ù
  594. ı¯ˇ‹
  595. ı¯ˇ‹
  596. ı¯ˇ‹
  597. ı¯ˇ‹
  598. ı¯ˇ‹
  599. ı˜ˇ‡› ı¯ˇ ›ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ò<Ä¢fiÄ¢fiX6zı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ flˇ‡ı¯ˇ!fiˇ‡ı¯ˇ!fiˇ‡ı¯ˇ?fiˇ‡ı¯ˇfiˇ‡ı¯ˇfiˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡òÅfi@fiHHˆtå&¢Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  600. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@fiÿ6'¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ£¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ£¯˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ£˛≤ˇ˚ˇˆÅˇÂˇÅ£_˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇÙŎÁˇÅ£_˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇÙŎÁˇÅ£]˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇÅÅŸ]˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇÅÅŸ]˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇÅÅŸ]˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇÅÅŸ]˛ˇ+*+*+*+*ˇ*˛ˇ3*ˇ+*ˇ*+*+*+ˇ+ˇ+*+*+ˇˇ+*+*+*+˛ˇ˚ˇÅÅŸi˛ˇ+*$+*$+*$+*$+ˇ$˛+*$˛˛ˇ/+*ˇ+ˇˇ+*$ˇˇ$˛ˇˇ$˛+*ˇ˛+*$˛ˇ*ˇ˛+ˇ$+*$+*$+*$˜ˇÅùˇ˚ˇ¯ˇ˝˛ıˇÑw˛Kˇ+*++*++*++*+ˇ*ˇˇ+*+ˇ*ˇˇˇ+ˇ+*ˇ+*ˇ+ˇˇ+ˇˇˇ*+ˇ+ˇ+ˇ*ˇˇ*++*++*++*˛ˇÅñ¸ˇˇˇ¸ˇˇ˛ˇˇ˛ˇˇˇˇ˛ˇÖy˛ ˇ+*+*+*+*+ˇ+*ˇˇ+ˇˇ+ˇˇ˝ˇ +*ˇ+*ˇˇ+*ˇˇ+˝ˇ*ˇ+*ˇ+ˇ+*+*+*˛ˇÅñˇˇˇˇˇ˝ˇˇˇˇˇˇˇˇˇˇÑy˛Kˇ$+*$+*$+*$+*$˛+ˇ$+ˇ$˛+ˇ$˛ˇ*ˇ+*$+ˇ$ˇˇ$ˇˇ$˛+*$ˇ*$˛+ˇ$˛+*$+*$+*$+˛ˇÅñ˛ˇ˛ˇ˛˝ ˇ˛ˇ˛ˇ˛ˇ˛ˇ¸ˇÑ{˛ˇ*++*++*++*++*ˇ+˛ˇ+*ˇ+ˇ+ˇ+*ˇˇ+*++ˇˇ˛ˇˇ*+ˇˇ*+ˇˇ+ˇ*ˇ+*++*++*+˛ˇÅñˇˇˇˇˇ˝ ˇˇˇˇˇˇ˛ˇˇˇÑz˛Kˇ+*+*+*+*ˇ+*+*+*ˇ+*+*+*+*+ˇ+*+*+*ˇ+*+*+*+˛ˇÅñˇˇˇˇˇ¸ˇˇ˛ˇˇ˛˛ˇˇˇ˛ˇˇÖ\˛Kˇ+*$+*$+*$+*$+*ˇ+*$+*$˛ˇ*$+*$+*$+*$+*ˇ˛+*$+*$+*$ˇ*$+*$+*$+*$˛ˇÅÅ˛Å˜\˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅŎˇÅ˜Y˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅÅÅı˛≤ˇÅ¨≥ˇÌ¥ˇ˘ˆ˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ¨Mˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇÌLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*ˇ˘¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ¨Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔKˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚¯˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ¨Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔKˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚¯˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ¨Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔKˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚¯˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ¨Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔKˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ≥˛ˇ˝ˇ$+*$+*$+*ˇ˛˛ˇ:+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*˛ˇ˜˝ˇ˝Kˇ+*$+*$+*$+*$+*$+*$˛ˇˇ$+*$ˇ*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$˛ˇ˚˝˛Kˇ*++*++*++*++*++*ˇˇ*++*ˇ+*++*+ˇ*++ˇ++*++*+ˇˇ++*++*++*++*+˛ˇÅ≤¸ˇˇ*++*++*++*+ˇ+*ˇˇ+*ˇˇ+˛ˇ+*+ˇ+*ˇˇ+ˇˇ+ˇˇ+¸ˇ++ˇˇ+*˛ˇ*ˇˇ+*++*++*++˛ˇˆ¸ˇMˇ+*++*++*++*++*++ˇ++ˇ+ˇˇ+ˇ+*ˇˇ+ˇˇ+*+ˇ+*+ˇˇ*+ˇˇ*++*++*++*++*++*˛ˇ˚ı˛ˇ+*+*+*+*+*ˇ+˝ˇ *ˇˇ*+*ˇˇ+˛ˇ +*ˇ+ˇˇ+ˇˇˇˇˇ+*+*+*+*+Ŏ®ˇ+*+*+*ˇ*ˇ+*˛ˇ2ˇ*ˇ+*ˇˇˇ*ˇ+*ˇˇ*ˇ+ˇˇ*ˇ+ˇˇ+ˇ+*+*+*˛ˇ¸ÛˇJ+*+*+*+*+*+*ˇ+*ˇ*ˇˇ*ˇ+ˇˇ+*ˇ+*ˇ+*ˇ+ˇ+*+*+*+*+*˛ˇ˚˛Kˇ+*$+*$+*$+*$+*$ˇ*$˛ˇ*ˇ+ˇˇ+*$˛+*ˇ˛+*ˇˇ*ˇ+ˇˇ+ˇ$˛+ˇ$+*$+*$+*$+*$˛ˇÅ≥˚ˇ%ˇ+*$+*$+*$+*ˇ+ˇ$ˇˇ$˛ˇ*ˇ+*ˇ+*ˇ˛˛ˇˇ*$ˇ*ˇˇ*$˛+*ˇˇ*$˛˛ˇ ˛+*$+*$+*$˛ˇ¸ˇ¸˚ˇLˇ$+*$+*$+*$+*$+*$ˇ*$+*ˇ+ˇˇˇ*$˛ˇ*$+*ˇ+ˇˇ˛ˇ*$˛+*$+*$+*$+*$+*$+˛ˇ˚˛.ˇ+*++*++*++*++*+ˇ+*ˇˇ+ˇ+ˇˇ++*ˇ+ˇˇ+ˇ+ˇ+¸ˇ++*ˇˇ*++*++*++*++*˛ˇÅ≥˛ˇ˝Lˇ+*++*++*++ˇ+ˇ*+ˇ+*ˇˇ+ˇ++*ˇ+ˇˇ+*+ˇ+*+ˇ+ˇ+ˇ+*ˇ+ˇ+ˇ+*ˇˇ+*++*++*++*+˛ˇ¸ˇ˝˝ˇ˝Kˇ*++*++*++*++*++*+ˇ+*+ˇ+ˇ+ˇˇ+ˇ+*ˇˇ+*++*ˇˇ*++*ˇ+*++*++*++*++*+˛ˇ˚˚˛Kˇ+*+*+*+*+*ˇ*ˇˇ*ˇ+ˇˇ+*ˇ+*ˇˇ+*ˇˇ*ˇ+*ˇ+ˇˇ+ˇ+*+*+*+*˛ˇÅ¨ˇ+*+*+*+*ˇ+ˇ+˝ˇ*ˇ+*ˇ+*ˇˇˇˇ*ˇ*ˇˇ*ˇˇ+˛ˇ+ˇˇ+*+*+*˛ˇ¸ˇıˇ+*+*+*+*+*+˛ˇ0+*ˇˇ*ˇ+ˇˇˇ*+*ˇ+*ˇˇ+*ˇ+*+*+*+*+*+˛ˇ˚¸˛Kˇ$+*$+*$+*$+*$+*ˇ+ˇˇˇ*$˛+ˇ$+*ˇ˛+ˇˇ˛+*ˇ+ˇˇ+ˇˇ+ˇ$˛+*$+*$+*$+*$+˛ˇÅ¨Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸ˇıKˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚¸˛Kˇ*++*++*++*++*++ˇ++*++*++*++*++*++ˇ++*++*++*ˇ+*++*++*++*+˛ˇÅ¨Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸ˇıKˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚¸˛Kˇ+*+*+*+*+*ˇ+*+*+*+*+*+ˇˇ+*+*+*ˇ+*+*+*+*+˛ˇÅ¨Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇıKˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚¸˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ¨Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸ˇıKˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚¸˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ¨Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¸ˇıKˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚˛≤ˇÅ¨±ˇ¸ˇı≤ˇ˚Ø˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÅ¨Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸ˇÛ¥ˇ˚Ø˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ¨Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸ˇÛ¥ˇ˚´˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅ¨Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇ†´˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ¨Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸ˇ†´˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÅ¨Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¸ˇ†´˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ¨ˇ+*+*+*+*+*+*+*+*˛ˇ**+*ˇ+*+*+*+*+*+*+*+*+*˛ˇ¸ˇ†´˛
  601. ˇ$+*$+*$˛˛ˇ=˛+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*ˇ+*$˛+*$+*$+*ˇ˛+*$+˛ˇÅ¨Lˇ$+*$+*$+*$+*$+*$+*$+*$˛+*$˛+*ˇ˛+ˇ$ˇˇ$˛ˇ*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸ˇ†•˛ˇ*++*++ˇ+ˇ*+ˇˇ*+ˇˇ*˛ˇ*+ˇ*+ˇˇ*ˇˇ+ˇˇ¸ˇ*++*ˇˇ+˛ˇ+*ˇ+ˇˇ+ˇˇˇˇ+ˇ+*+˜ˇÅ≥Lˇ*++*++*++*++*++*++*++*ˇ+*+ˇ*+ˇˇ*ˇ+ˇˇ+*++*++*++*++*++*++*++¯ˇ†Ø˛ˇ+*+*ˇ+ˇˇ*+˛ˇ4+ˇˇ*+ˇˇ+ˇˇ+ˇˇ+ˇ+*ˇ+ˇˇ+ˇˇ+ˇˇˇˇ*ˇˇ*+˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*ˇ+*+ˇˇˇˇ+*ˇˇ+*+*+*+*+*+*+*+*˛ˇ¸ˇ†Ø˛<ˇ+*$+*$ˇ*$˛+*ˇ+ˇˇˇˇ$˛+*$˛+*$˛ˇ*$˛ˇ*$˛+ˇ$˛+*$ˇ*$˛ˇ*$˛+ˇ$˛˛ˇ ˛+*$ˇ*ˇ+*$˛ˇ˚ˇÅ≥Lˇ+*$+*$+*$+*$+*$+*$+*$+ˇ$+ˇ$˛+*ˇ˛+ˇ$ˇˇ$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸ˇ†Ø˛Kˇ+*++*+ˇ+*ˇ+ˇ+ˇ*+ˇˇ*ˇ+*+ˇ+*ˇˇ+*ˇˇ+*ˇˇ*ˇ+*+ˇ+*ˇˇ+*ˇˇ*ˇ+*ˇ+ˇ+ˇ+ˇ++*˛ˇ˚ˇÅ≥ˇ+*++*++*++*++*++*++*++˛ˇ*+*+ˇˇ*ˇ+ˇˇˇ*++*++*++*++*++*++*++*+˛ˇ¸ˇ†Æ˛ˇ+*+*ˇ*ˇ+*ˇ+*˝ˇˇ+*ˇ+*ˇ+ˇˇˇ*ˇ+ˇˇ+*+ˇˇ˛ˇ+ˇˇˇˇˇˇ*ˇ+*˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇ†Ø˛Kˇ$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$ˇ*$+˛ˇ˚ˇÅ≥Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸ˇ†Ø˛Kˇ*++*++*ˇ+*++*++*++*++*++*++*++*++*++*++*++ˇˇ+*++*++*ˇ+*+˛ˇ˚ˇÅ≥Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸ˇ†Ø˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇ†Ø˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇÅ≥Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸ˇ†˛≤ˇ˚ˇÅ≥±ˇ¸ˇı¥ˇ˘ˇ˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇıLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ˘˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇÅ≥Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸ˇıKˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇÅ≥Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸ˇıKˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸ˇıKˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇÅ≥Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸ˇıKˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇÅ≥Lˇ+*++*++*++*++*++*+ˇ*+ˇ+ˇ++ˇ+ˇ+*++*++ˇ++*++*++*++*++*++*++*+˛ˇ¸ˇ˝˝ˇ˝ˇ*++*++*++*++*˛ˇ6*++*+ˇ*++*++*++*++*++*+ˇ+ˇˇ+*++*++*++*++*+˛ˇ˚˛Kˇ+*+*+*+*+*+*+ˇ+ˇˇ+*ˇ+ˇ+*+*ˇ+*+*+*+*+*+*+*˛ˇ˚ˇÔ¸ˇÔˇˇÎˇ˝ˇˆˇÜˇ+*+*+*+*+*+*ˇ*˙ˇ*ˇ˛ˇ$ˇ*ˇ+ˇˇˇˇˇ*+*+*+*+*+*˛ˇ¸ˇ¸¸ˇ(ˇ+*+*+*+*ˇ+*ˇ+ˇˇ+ˇˇˇ*ˇˇ*˛ˇ!ˇˇˇˇˇˇ*ˇˇ+*ˇˇ+*+*+*+*+˛ˇ˚:˛ˇ$+*$+*$+*$+*$+*$+*ˇˇ*ˇ˛˛ˇ)˛+ˇ$˛ˇˇ$˛+ˇ$˛ˇ*$˛ˇ*$˛+*$+*$+*$+*$+*$+˛ˇ˚ˇÌ˛ˇ˛ˇ˛˛ˇ˛ˇˇ˛ˇ˛˛ˇ
  602. ˛ˇ˛ˇˇ˛ˇˇ˚ˇˇ˛ˇ ˇˇˇˇˇ˛ˇáLˇ$+*$+*$+*$+*$+*$+*ˇˇ*ˇˇˇ$ˇ*ˇ+ˇˇˇ*$ˇˇ$ˇˇ$+*$+*$+*$+*$+*$+*˛ˇ¸ÛˇJ+*$+*$+*$+*$ˇ*$+*ˇ+ˇ$˛ˇ*$˛+ˇ$+*ˇ+ˇˇ+ˇ$ˇ*ˇˇˇ$˛+*ˇ+*$+*$+*$+*$˛ˇ˚7˛Kˇ*++*++*++*++*++*++ˇ+ˇ+*ˇˇˇ+ˇ*ˇ+ˇˇˇ*+ˇ+ˇ+ˇˇ++*++*++*++*++*+˛ˇ˚ˇÌ"ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ¸ˇˇˇˇˇˇˇˇˇˇÜˇ*++*++*++*++*++*+˚ˇ+ˇˇ*+ˇ+ˇ+ˇˇ+ˇ+*+¸ˇ+ˇ++*++*++*++*++*++˛ˇˆ˚ˇ8ˇ+*++*++*++*+ˇ+*++ˇ+ˇ*ˇˇ+*ˇˇ*++ˇ+ˇˇ+ˇ*+ˇ+ˇ+ˇˇ*˝ˇ++*++*++*++*˛ˇ˚òÅfi@ÄfiHHˆtê&£Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  603. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Äfi6X'4˛ˇ+*+*+*+*+*+¸ˇˇ+ˇˇ+ˇˇ+*ˇˇ+ˇˇ*˝ˇˇ+*+*+*+*+*+˛ˇ˚ˇÌˇˇ˛˝ˇˇˇˇ˛ˇˇˇˇˇˇˇ¸ ˇˇˇˇˇ¸ˇ¸ˇÜLˇ+*+*+*+*+*+ˇ+ˇˇˇˇˇ*ˇ+ˇˇˇ*ˇˇ+*ˇ+*+*+*+*+*+*˛ˇ˜˝ˇ˝Kˇ+*+*+*+*ˇ*ˇ*ˇ+ˇˇˇ*ˇ+ˇ+*ˇ+ˇˇ+ˇˇ*ˇˇˇˇ+*+*+*+*+*˛ˇ˚:˛Kˇ+*$+*$+*$+*$+*$+*$˛+*$˛+ˇ$˛ˇ*$˛+ˇ$ˇˇ$˛+*ˇˇ*$+*ˇ+*$+*$+*$+*$+*$˛ˇ˚ˇÌ"ˇˇ˛ˇ˛ˇˇ˛ˇ˛ˇˇ˛ˇ˛¸ ˇˇˇˇ˛ˇ˛ˇˇ˛Ü$ˇ+*$+*$+*$+*$+*$+*$˛+*$˛ˇ*ˇ˛+*ˇ˛ˇ˛ˇ +*ˇˇˇ$ˇ*$+*$+*$+*$+*$+*$˛ˇÔ&ˇ$+*$+*$+*$+*$˛ˇˇ$+ˇˇ+ˇ$˛ˇ*$˛+*$˛ˇ!ˇ*$ˇˇ$ˇ*ˇ˛+*ˇ˛+*$+*$+*$+*$+˛ˇ˚8˛%ˇ+*++*++*++*++*++*ˇ+*ˇˇ*ˇˇ+*ˇ˛ˇ˛ˇ+ˇ+ˇˇ+ˇ*++*++*++*++*++*˛ˇ˚ˇÌˇˇ¸ˇˇ˛ˇˇˇˇˇˇˇˇ˚ˇˇ˛ˇˇ˛ˇˇˇ˛ˇˇáLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔKˇ*++*++*++*++*++*++*++*++*++*+ˇ+*++*++*++*++*++*++*++*++*+˛ˇ˚˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇªˇÅ˙Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔKˇ+*+*+*+*+*+*+*+*+*ˇ*+*+*+*+*+*+*+*+*+˛ˇ˚˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇºˇˇÅ˙Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔKˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚¸˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇÅ≥Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÔKˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚¸˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇÅ≥Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔKˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚˛≤ˇ˚ˇˆ≥ˇå±ˇÔ≤ˇ˚˛˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇˆMˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇåLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÌ¥ˇ˚ˇ˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇˆLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇéLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÌ¥ˇ˚˚˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇˆLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇö˚˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇˆLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇéLˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇö˚˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇˆLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇéLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇöˇ˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇ˝˝ˇ˛Lˇ*$+*$+*$+*$+*$+*ˇ˛ˇ*$˛ˇ*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇéLˇ+*$+*$+*$+*$+ˇˇ˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$˛ˇö¸˛ˇ+*++*++*++*++˝ˇ4*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*˛ˇ˚ˇ¸¸ˇˇ+*++*++*++*++*+ˇ*+ˇ*ˇˇ+˛ˇ+*++ˇ+˛ˇ+ˇˇ+˛ˇ+*ˇˇ+*++*++*++*++*+˛ˇéˇ+*++*++*++*+ˇ+*+ˇ*ˇˇ*˝ˇ+ˇˇ+ˇˇ++*ˇˇ+*ˇˇ+ˇ+ˇ+*˛ˇ*ˇˇ+*++*++*++*+˛ˇö˜˛ˇ+*+*+*+*+ˇ+*ˇˇ*ˇ˝ˇ+*ˇˇ+ˇˇ+*ˇˇ*ˇˇ*ˇ+ˇ˛ˇˇˇ+*+*+*˛ˇ˚ÙˇK*+*+*+*+*+ˇ+*ˇˇ*ˇ+ˇ+ˇ+ˇˇ+*ˇˇ*ˇ+ˇˇ+ˇ+*+*+*+*+˛ˇéLˇ+*+*+*+*ˇ*+ˇˇ+ˇˇˇ*ˇˇ*ˇ+ˇ+*ˇ+ˇˇ+ˇˇˇ*ˇ+ˇˇ*+*+*+*˛ˇö˙˛Kˇ$+*$+*$+*$+*$˛+*$ˇ*ˇˇ*ˇ˛+ˇ$˛+*ˇ˛+*$ˇ*$˛ˇ*$˛+ˇ$˛+ˇ$˛+*$˛+*$+*$+*$+˛ˇı¸ˇ6ˇ+*$+*$+*$+*$+*$˛+*$+ˇˇˇ*$˛+*$ˇ*$˛+ˇ$˛ˇ*ˇˇ*$˛˛ˇ˛+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*ˇ+*$˛+ˇ$˛+ˇˇˇ*ˇ˛ˇˇ$˛+*$ˇ*$ˇ*$˛ˇ*ˇ+ˇ$˛+*ˇ+*$+*$+*$+*˛ˇö˘˛!ˇ*++*++*++*++*ˇ+*+ˇ+ˇ+ˇ+ˇˇˇ*¸ˇ$+*+ˇ+*+ˇ+*ˇˇ*ˇˇ*ˇ+*ˇ+*++*++*+˛ˇˆ˛ˇ˝Lˇ++*++*++*++*++*ˇ+*ˇˇˇ+ˇ+*ˇ+*+ˇ*ˇˇ*ˇ+ˇ+ˇ+*ˇˇ+*++*++*++*++*++*˛ˇéLˇ*++*++*++*++ˇ++*ˇˇ*ˇˇˇ+ˇ+ˇ++*ˇ+*+ˇ+*ˇˇ+*ˇˇ+ˇ+ˇ*ˇ+ˇ++*++*++*++˛ˇöˆ˛Kˇ+*+*+*+*ˇ+*ˇ*ˇˇ*ˇˇ+ˇˇ+*ˇ+*ˇ*ˇˇ*ˇ+ˇˇ+ˇˇ+*ˇ+*+*+*+˛ˇÔˇ+*+*+*+*+*˛ˇ+ˇˇ˛ˇ +*ˇ*ˇ+ˇ˛ˇ˛ˇ+ˇˇ+*+*+*+*+*˛ˇéˇ+*+*+*+*˝ˇ+*ˇˇ*ˇˇ*ˇˇ*ˇ+*+ˇˇ+ˇˇ˛ˇ+ˇˇ+*ˇ+*+*+*+*˛ˇö˜˛Kˇ+*$+*$+*$+*$+*ˇ˛ˇˇ$+ˇ$˛+ˇ$˛+*ˇ˛+ˇ$+*$˛ˇ*$˛ˇ*$˛ˇˇ$˛+ˇ$+ˇ$+*$+*$+*$˛ˇÔLˇ*$+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+˛ˇéLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇö˜˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÔLˇ+*++*++*++*++*++*++*++ˇ++*++*++*++*++ˇ++*++*++*++*++*++*+˛ˇéLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇö˜˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇéLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇö˜˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÔLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇö˜˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇéLˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇö˛≤ˇÔ±ˇé±ˇö˜˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇéLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇö˜˛Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÔLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇéLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇö˜˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇéLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇö˜˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÔLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇö˜˛Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇéLˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇöı˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÔLˇ+*+*+*+*+*+*ˇˇ+*ˇˇ*+*+*+*ˇ+*+*+*+*+*+*+*+*˛ˇéˇ+*+*+*+*+*+*¸ˇ,*+*+*ˇˇ+*ˇ*+*+*+*+*+*+*˛ˇö˜˛ˇ+*$+*$+*$+*$+*$+*$+*ˇ˛˛ˇ++*$+*$+*ˇˇ*$+*$˛+*$+*$+*$+*$+*$+*$˛ˇÔ'ˇ*$+*$+*$+*$+*$+*$ˇˇ$+ˇˇˇˇ$˛ˇˇ$˛ˇˇ*ˇ˛ˇ*$˛ˇ+*$+*$+*$+*$+*$+˛ˇé$ˇ+*$+*$+*$+*$+*$+*$+*$ˇ*$˛ˇ*$˛ˇ$+*ˇ˛+*ˇ+ˇˇ+*$+*$+*$+*$+*$+*$˛ˇö˜˛%ˇ+*++*++*++*++*++*++*+ˇ+*+ˇˇ*+˛ˇ"+ˇ+ˇ+*ˇ+ˇˇ+*++*++*++*++*++*˛ˇÔ ˇ+*++*++*++*++*++*+ˇˇ*+ˇˇ+˛ˇ(+ˇ+ˇ+*ˇˇ+ˇ+ˇ+*ˇ+ˇ++*++*++*++*++*+˛ˇéLˇ+*++*++*++*++*++*++*+ˇ+*+ˇˇ*ˇ+ˇ++ˇˇˇ*++ˇ++*++*++*++*++*++*+˛ˇö˜˛Kˇ+*+*+*+*+*+*+*ˇ*+ˇˇˇ*ˇ+*ˇˇ*ˇ+*ˇ+*+*+*+*+*+*˛ˇÔˇ*+*+*+*+*+*ˇ*ˇˇ*˛ˇ+*ˇˇ+*ˇˇ*ˇˇ*ˇˇ*ˇ+*ˇ+*+*+*+*+*+˛ˇéLˇ+*+*+*+*+*+*+*ˇ*ˇˇ+ˇˇ+*ˇ+*ˇˇ+*ˇ+*ˇ+*+*+*+*+*+*˛ˇö˜˛Kˇ$+*$+*$+*$+*$+*$+*$+*ˇ+ˇˇˇ*ˇ+ˇ$ˇ*ˇ+ˇ$+ˇ$+*$+*$+*$+*$+*$+˛ˇÔLˇ+*$+*$+*$+*$+*$+*ˇˇ*ˇˇˇ$ˇˇ$ˇ*ˇ+ˇˇˇ*ˇ+ˇ$ˇ*$+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*$+*$+*$+*ˇˇ*$˛+ˇ$ˇ*$ˇˇ$+ˇ$ˇ*$+*$+*$+*$+*$+*$+*˛ˇöÙ˛Kˇ*++*++*++*++*++*++*++ˇ+ˇ*+ˇ+ˇ+ˇ*+ˇ+ˇ++ˇ+ˇ*++*++*++*++*++*+˛ˇÔˇ++*++*++*++*++*++ˇ+ˇ*+ˇ+˚ˇ+˛ˇ+ˇ+ˇ+ˇ++˛ˇ+*++*++*++*++*++*˛ˇéˇ*++*++*++*++*++*++*++ˇ+˛ˇ+˛ˇ$+*+ˇˇ*+ˇ+*+ˇ+*++*++*++*++*++*++˛ˇö˜˛ ˇ+*+*+*+*+*+*+*ˇ+*˛ˇ*˛ˇ"ˇ*ˇ+ˇ+ˇ+*+*+*+*+*+˛ˇÔLˇ+*+*+*+*+*+*+*+*+ˇ+*ˇ+*+*+*ˇ*+*+*+*+*+*˛ˇéLˇ+*+*+*+*+*+*+*+*+*ˇ*+*+*+*+*+*+*+*+*+*˛ˇö˜˛Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$ˇ*$+*$+*$ˇˇ$+*$+*$+*$+*$+*$+˛ˇéLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇö˜˛Kˇ+*++*++*++*++*++*++*++*++*+ˇˇ++*++*++*++*++*++*++*++*++*˛ˇÔLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇéLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇö˜˛Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇéLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇö˜˛Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÔLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇéLˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇö˛≤ˇÔ±ˇé±ˇö\¸¥ˇÔLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇå≥ˇö\¸¥ˇÔLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇå≥ˇöXùLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅÅ◊XùLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÅÅ◊XùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅÅ◊XùLˇ++*++*++*++ˇ+ˇ+*+ˇ+*++*++*++*++*++*++*ˇ+*ˇˇ+*++*ˇˇ+*++*++*++*˛ˇÅÅ◊Xù$ˇ+*+*+*+ˇˇ*ˇ*ˇˇ*ˇ*ˇˇ*˛ˇ$ˇˇˇˇ*ˇˇ+*ˇˇ*ˇ+*ˇˇ+ˇ+*+*+*˛ˇÅÅ◊XùLˇ*$+*$+*$+*$˛+*$˛+ˇˇˇ*$˛+*ˇˇ*ˇ+ˇ$ˇˇ$ˇˇ$+ˇ$+ˇˇˇ*$+ˇ$˛+*$+*$+*$+˜ˇÅÅfi[ùˇ+*++*++*++*ˇ+*ˇˇˇ+˝ˇ0+ˇ+ˇ+ˇ+ˇ*+ˇˇ*+ˇˇ*+ˇ*+ˇˇ+ˇ*+ˇ*ˇ+*++*++*+˛ˇ˚ˇÅÅfi`ùLˇ*+*+*+*ˇ+*ˇ+ˇˇˇ*+*ˇˇ*ˇ+ˇˇˇˇˇ+ˇ+ˇˇ+*ˇ+ˇˇ+*+*+*+˛ˇ˚ˇ˚ŎŎÁˇ˛dùLˇ+*$+*$+*$+ˇ$+*ˇˇ*$˛ˇ*$+ˇ$˛+*$˛ˇˇ$ˇˇ$˛+*$˛+*$˛ˇ*$˛+*$˛+ˇ$+*$+*$+*$˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛dùLˇ++*++*++*+ˇ*++*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ*++*++*++*˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛dùLˇ+*+*+*+*ˇ+*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛tùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇ˚ˇñ‹ˇ˛‹ˇ’‹ˇ˝‹˛ˆ‹˛ó‹ˇ˛üùLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇ˚ˇñ‹ˇˇ‹‹ˇ˛‹    ˇˇ‹ˇ‹‹ˇ‹‹ˇ˛‹¸ˇ˛‹ˇˇ‹ˇ‹‹ˇ‹˛ˇ¸‹ˇˇ‹‹˛ˇ‹‹ˇ‹‹ˇˇ˛‹ˇˇ‹˛ˇò‹ˇ˛•ùLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇ˚ˇï‹ˇ‹ˇˇ‹‹ˇ‹‹ˇˇ‹ˇ‹ˇ‹ˇ‹‹ˇ‹‹ˇˇ˛‹ ˇ‹‹ˇˇ‹‹ˇ‹ˇ‹‹ˇ˛‹ˇ‹‹ˇ‹ˇ‹‹ˇ‹ˇ‹ˇ‹‹ˇ‹ˇ‹‹ˇ‹ˇó‹ˇ˛Uù±ˇ˚ˇ˚ˇï‹ˇ‹ˇ˛‹‹ˇ˛˛ˇ‹ˇ‹ˇ˝‹˛‹‹ˇ˛˛‹ ˛‹‹ˇ˛‹‹ˇ‹ˇ‹‹˛˛‹ ˛‹‹ˇ‹ˇ‹‹˛‹ˇ‹˛˛ˇ‹ˇ˝‹ˇó‹ˇ˛°ùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇ˚ˇï‹ˇ‹ˇˇ‹‹ˇ¸‹ˇ‹ˇ˝‹ˇ‹‹ˇˇ˛‹ ˇ‹‹ˇˇ‹‹ˇ‹ˇ‹‹ˇ˛‹ ˇ‹‹ˇ‹ˇ‹‹ˇ‹ˇ‹ˇ˝‹ˇ‹‹ˇ‹ˇó‹ˇ˛õùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇ˚ˇî‹ˇ‹ˇ˛‹˛ˇ‹ˇ˛‹ˇ˝‹˝ˇ˝‹ˇˇ‹˝ˇ‹˛ˇ¸‹ˇˇ‹‹˛ˇ‹‹ˇ‹‹˛ˇ‹‹ˇˇ‹‹ˇˇò‹ˇ˛oùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇ˚ˇÇ‹ˇ‹‹ˇÙ‹ˇÒ‹˛ã‹ˇ˛nùLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇ˚ˇÅ‹ˇˇÛ‹ˇÚ‹ˇˇã‹ˇ˛dùLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛òÅfiÄ¢fiHHˆtå&§Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  604. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄ¢fiX6z'dùLˇ+*$+*$+*$+*$+*$+*$ˇ*$˛+ˇ$+ˇ$˛+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛yùˇ++*++*++*++*++*++*ˇ¸ˇ*˛ˇ*˛ˇ$*ˇˇ*+ˇˇ*ˇˇ+*+ˇ+*++*++*++*++*++*˛ˇ˚ˇ˚ˇÙ‹ˇ˛‹ˇˇÂ‹ˇ˙‹ˇ˝‹ˇˆ‹ˇÅ‹≤‹ˇ˛†ùLˇ+*+*+*+*+*+*ˇ+ˇˇ+ˇˇ+ˇˇ+*ˇˇ+ˇ+ˇˇ+ˇˇ+*+*+*+*+*+*˛ˇ˚ˇ˚ˇÙ‹ˇˇ‹‹ˇˇ‹‹ˇˇ‹ˇ‹‹ˇ‹‹ˇ‹‹˛ˇ˛‹ˇˇ‹ˇˇ‹‹˛ˇ‹‹ˇˇ‹‹˛ˇ‹‹ˇ‹‹ˇˇ˛‹ˇˇ‹˛ˇÅ‹≥‹ˇ˛üùˇ*$+*$+*$+*$+*$+*$˛ˇ˛ˇˇ$˛+ˇ$˛+ˇ$ˇˇ$˛+*$˛˛ˇ˛+*ˇ+*$+*$+*$+*$+*$+˛ˇ˚ˇ˚ˇÛ‹ˇ‹ˇ‹ˇ‹ˇ‹‹ˇˇ‹ˇ‹ˇ‹ˇ‹‹˛‹‹ˇ‹ˇ‹‹˛ˇ˝‹ˇ‹‹ˇ‹‹˛‹ˇ‹‹ˇ‹ˇ‹ˇ‹‹˛‹ˇ‹‹ˇ‹ˇÅ‹≤‹ˇ˛öùLˇ+*++*++*++*++*++*+ˇ+*+ˇˇ*ˇˇ*ˇˇ*+ˇˇ*ˇ+*ˇˇ+*++*ˇ+*++*++*++*++*+˛ˇ˚ˇ˚ˇÛ‹ˇ‹ˇ‹ˇ‹¸ˇ‹ˇ‹ˇ˝‹    ˇ‹‹ˇ‹ˇ‹‹ˇˇ˝‹ˇ‹‹ˇ‹‹ˇ‹ˇ‹‹ˇ‹ˇ‹˝ˇ‹ˇ˝‹ˇÅ‹≤‹ˇ˛õù$ˇ*+*+*+*+*+*ˇ*ˇˇˇ+ˇˇ+˛ˇ+˛ˇ +*ˇ+ˇˇ+*ˇ+*+*+*+*+*+˛ˇ˚ˇ˚ˇÛ‹ˇ‹ˇ‹ˇ‹ˇ¸‹ˇ‹ˇ˝‹    ˇ‹‹ˇ‹ˇ‹‹ˇˇ˝‹ˇ‹‹ˇ‹‹ˇ‹ˇ‹‹ˇ‹ˇ‹ˇ˝‹ˇ‹‹ˇ‹ˇÅ‹≤‹ˇ˛üùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇ˚ˇÚ‹
  605. ˛‹‹ˇ‹‹ˇˇ˛‹ˇ˛‹ˇ˛‹ˇˇ˛˛‹˛ˇ‹ˇ˝‹˛ˇ‹‹˛ˇ‹‹˛ˇˇ‹‹ˇ‹‹˛ˇˇ‹‹ˇˇ‹‹ˇˇÅ‹≥‹ˇ˛jùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇ˚ˇ‡‹ˇÁ‹ˇÅ‹¶‹ˇ˛kùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇ˚ˇ‡‹ˇË‹ˇˇÅ‹¶‹ˇ˛dùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛dùLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇ˚ˇÅ‹Å‹È‹ˇ˛ù±ˇ˚ˇ˚ˇ˝‹¥ˇÅ‹∫‹ˇ˛≤ùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚ˇ˚ˇ˝‹Lˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇÅ‹∫‹ˇ˛≥ùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ˚ˇ˚ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛≥ùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚ˇ˚ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛≥ùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ˚ˇ˚ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛≥ùLˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚ˇ˚ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛≤ùˇ*+*+*+*+*˝ˇ6+*+*+*+*+*+*+*+*+*+ˇ+*+*+*+˛ˇ˚ˇ˝˛ˇ˝‹ˇ+*+*+*+*+*˛ˇ3ˇ*ˇ+*+*+*ˇ+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛≤ùLˇ+*$+*$+*$+*$˛+*$ˇ*ˇˇ*ˇ˛ˇˇ$ˇˇ$ˇˇ$+*ˇ˛+*ˇ˛+ˇ$˛+*ˇ˛ˇ*ˇ˛+*$+*$+*$+*$˛ˇ˚ˇ˝˚ˇ‹ˇ*$+*$+*$+*$+*$ˇ*$ˇ*ˇ˛ˇ˛+*$+ˇ$˛ˇ +*ˇ˛+ˇˇ˛+*$˛ˇ*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛¨ùLˇ++*++*++*++*ˇ+*+ˇ+ˇ+ˇ+ˇˇˇ*ˇ+ˇ+ˇ+*+ˇ*+ˇˇ*+ˇˇ*ˇ+ˇ+ˇ+*ˇ+*++*++*++*˛ˇ˚Ùˇ-+*++*++*++*++*+ˇ+*++ˇ+ˇˇ*+ˇ+*+ˇ+*+ˇ+ˇ++*˛ˇ*+ˇ+ˇ+ˇ*++*++*++*++*+˛ˇÅ‹º‹ˇ˛≠ù ˇ+*+*+*+*ˇ+*ˇ*ˇˇ*ˇˇ+ˇ˝ˇ'ˇ*+ˇ+ˇˇˇˇ+*ˇˇ*ˇ+*+*+*+*˛ˇˆ¸ˇ7‹‹ˇ*+*+*+*+*ˇ*+*ˇˇˇˇ*+ˇˇ*ˇ+ˇˇˇˇˇ*˝ˇ+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ*$+*$+*$+*$+ˇ$+*ˇˇ*ˇˇˇ$˛+ˇ$+*ˇ+*$˛+*ˇ˛+*ˇ˛+ˇ$ˇ*ˇ+ˇ$+*$+*$+*$+˛ˇ˜˝ˇ˝‹Kˇ+*$+*$+*$+*$+*ˇ+*ˇˇ*ˇ˛+*ˇ+*$ˇ*ˇˇ*$˛+*ˇ˛+*ˇˇ*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛™ùˇ+*++*++*++*++˝ˇ*+ˇ*ˇˇ*ˇ+ˇˇ+ˇ++*+ˇˇ*+ˇˇ*˛ˇ*+ˇ+ˇ+ˇ*++*++*++*+˛ˇÙˇ˝‹ˇ++*++*++*++*++*˛ˇ*+ˇ+˝ˇ*++*ˇ+ˇ+ˇ+*+˚ˇ*+ˇˇ++*++*++*++*++˛ˇÅ‹º‹ˇ˛ØùLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÙˇ˝‹Kˇ+*+*+*+*+*+*+*ˇ+*+*+*+*+*ˇ+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÙˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛ØùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÙˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛ØùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÙˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÙˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛ù±ˇÙˇ˝‹≤ˇÅ‹º‹ˇ˛ØùLˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇÙˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÙˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛ØùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÙˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛ØùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÙˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇÙˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛ò<@fi@fiz6∫ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡ı¯ˇflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡ò<@Äfi@Äfi∫6˙Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡ò<Ä¢fiÄ¢fi˙6Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡Èflˇ‡≈≈≈òÅfi@fiHHˆtê&•IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  606. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@fiz6∫'≠ùˇ+*++*++*++*++*++*++*¸ˇ,+*++*++*ˇˇ*++*ˇ+*++*++*++*++*++*+˛ˇÙˇ˝‹Kˇ++*++*++*++*++*++ˇˇ+*ˇˇ+*++*++*++ˇ++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛Æù$ˇ*+*+*+*+*+*+*+ˇ+ˇˇ+˛ˇ$+*ˇ+ˇˇ+*ˇˇ+*+*+*+*+*+*+˛ˇÙˇ˝‹ˇ+*+*+*+*+*+*ˇˇ+*˝ˇ+˛ˇ+˛ˇ+*ˇ˛ˇ+˛ˇ+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛Øù!ˇ+*$+*$+*$+*$+*$+*$+*$˛+*$˛ˇ'+ˇ$+ˇ$˛ˇ*$+ˇ$+*$+*$+*$+*$+*$+*$˛ˇÙˇ˝‹Kˇ*$+*$+*$+*$+*$+*$ˇˇ$+ˇˇˇˇ$˛+*ˇ˛+*ˇˇ*ˇˇ*ˇ+ˇ$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛ØùLˇ++*++*++*++*++*++*++*ˇ+ˇˇˇˇ+ˇ*+ˇ*ˇˇ*+ˇ*++*++*++*++*++*++*˛ˇÙˇ˝‹Kˇ+*++*++*++*++*++*+ˇ+ˇ+ˇ+ˇˇˇ*ˇ+ˇˇ+ˇ+ˇ+ˇ+ˇ+ˇ+ˇ*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛ØùLˇ+*+*+*+*+*+*+*ˇ+*ˇ+ˇˇ+ˇ+ˇˇ+*ˇ+ˇ+*+*+*+*+*+*˛ˇÙˇ˝‹Kˇ*+*+*+*+*+*ˇ*ˇˇ*ˇ+ˇˇ+*ˇˇ+*ˇˇ*ˇˇ*ˇ+ˇ+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ*$+*$+*$+*$+*$+*$+*$+ˇ$+ˇˇ˛+ˇˇ˛+*$˛+ˇ$˛+*$˛+*$+*$+*$+*$+*$+*$+˛ˇÙˇ˝‹ˇ+*$+*$+*$+*$+*$+*ˇ+ˇ$˛ˇ*˛+ˇˇ˛+ˇˇ˛+*ˇˇ*ˇ+ˇˇ˛+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛ØùLˇ+*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*++*++*+˛ˇÙˇ˝‹Kˇ++*++*++*++*++*++*++*++*+ˇ*+ˇ*++*++*++*ˇ+*++*++*++*++*++˛ˇÅ‹º‹ˇ˛ØùLˇ*+*+*+*+*+*+*+*+*+ˇˇ+*+*+*+*+*+*+*+*+*+˛ˇÙˇ˝‹Kˇ+*+*+*+*+*+*+*+*+ˇ+ˇ+*+*+ˇˇ+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛ØùLˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÙˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛ØùLˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇÙˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛…ùLˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÙˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÍ‹ˇ˛‹ˇ‹ˇ˜‹ˇ‹ˇ˝‹ˇˆ‹ˇò‹ˇ˛Yù±ˇÙˇ˝‹≤ˇÍ‹ˇˇ‹‹ˇ˛‹ ˇˇ‹˛‹‹ˇ‹‹ˇ‹‹˛ˇ‹‹ˇˇ˛‹ˇ‹ˇˇ‹‹ˇˇ˛‹ˇˇ¸‹ˇˇ‹˛ˇˇ‹‹ˇ˛‹    ˇˇ‹‹ˇˇ‹˛ˇˇô‹ˇ˛¶õ≥ˇÙˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÈ‹*ˇ‹ˇˇ‹‹ˇ‹‹ˇˇ‹ˇ‹ˇ‹ˇ‹ˇ‹‹ˇ‹ˇ‹‹ˇ‹‹ˇ‹ˇˇ‹ˇ‹‹ˇ‹ˇ‹‹ˇ˛‹ˇ‹‹ˇˇ‹‹ˇ‹ˇ‹‹ˇ‹‹ˇˇ‹‹ˇ‹ˇò‹ˇ˛õõ≥ˇÙˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÈ‹ˇ‹ˇˇ‹‹¸ˇ‹ˇ‹ˇ˛‹ˇ‹‹ˇ‹˝ˇ‹‹ˇ‹ˇˇ‹ˇ˝‹˝ˇ˛‹ ˇ‹‹ˇˇ‹‹ˇ‹ˇ‹‹¸ˇ˝‹ˇò‹ˇ˛ùÅ¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÈ‹˛‹ˇˇ‹‹ˇ¸‹˛‹ˇ˛‹ˇ‹‹ˇ‹ˇ¸‹
  607. ˇ‹ˇ˛‹ˇ‹‹ˇ‹ˇ˚‹ ˇ‹‹ˇˇ‹‹ˇ‹ˇ‹‹ˇ˛‹ˇ‹‹ˇ‹ˇò‹ˇ˛ùÅ¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇË‹ˇ‹ˇ˛‹˛ˇ‹ˇ˛‹ˇ˛‹˛ˇ‹‹˛ˇ˛‹ˇ‹ˇ‹‹ˇˇ˛‹˛ˇ˝‹ˇˇ‹˛ˇ‹‹ˇ˛‹˛ˇ‹ˇˇ‹‹ˇˇô‹ˇ˛aÅ¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ≤‹ˇå‹ˇ˛bÅ¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*ˇ˛ˇˇ$ˇ*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ≥‹˛ˇå‹ˇ˛]Å¿ˇ˝‹#ˇ++*++*++*++*++*++*++ˇ++ˇ+ˇ+¸ˇ"++ˇˇˇˇ++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛aÅ¿ˇ˝‹Kˇ+*+*+*+*+*+*+*ˇ+*ˇˇ*ˇˇ*ˇ+ˇˇˇ+*+*+*+*+*+*+*˛ˇÔ‹≥ˇú‹ˇ˛ÆÅ¿ˇ˝‹+ˇ*$+*$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ+ˇˇˇ*$˛˛ˇ˛+*$+*$+*$+*$+*$+*$+*$˛ˇÔ‹Mˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇú‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*++*++*++*++*++*++*+ˇ+*+ˇ+ˇ+ˇˇ+ˇ+*ˇ+*ˇ+*++*++*++*++*++*++*+˛ˇÔ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇû‹ˇ˛ÆÅ¿ˇ˝‹ˇ*+*+*+*+*+*+*˝ˇ++*ˇ+ˇˇˇ*ˇˇˇ+*+*+*+*+*+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÔ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇû‹ˇ˛¥Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇˆ‹ˇˇ¸‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇˆ‹¸ˇN‹‹ˇ$+*$+*$+*$+*$+*$˛ˇˇ$˛+ˇ$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇû‹ˇ˛∞Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚‹Ùˇ*++*++*++*++*++ˇ++ˇˇˇ*˛ˇ*++*ˇ+˛ˇ+*ˇˇ+*˛ˇ*+ˇˇ*++*++*++*++*++˛ˇû‹ˇ˛gÅ¿ˇ˝‹≤ˇ˚‹ˇ¸‹˙ˇK+*+*+*+*+*ˇ+*ˇ+ˇˇ+*ˇ+*ˇ+*ˇˇ*ˇˇˇ+*ˇˇ+*ˇ+*+*+*+*+*˛ˇû‹ˇ˛∑Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇ˝‹˝ˇ˛‹4ˇ+*$+*$+*$+*$+*$ˇ*$+ˇ$˛+ˇ$ˇ*$+ˇ$ˇ*ˇˇˇ$˛+ˇ$˛ˇ˛ˇ*$+*$+*$+*$+*$˛ˇû‹ˇ˛∏Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇ˝‹ˇˇ¸‹Lˇ+*++*++*++*++*+ˇ+*+ˇˇ*ˇˇ*+ˇ+*++ˇ+ˇ+ˇ+ˇ+*ˇˇ*+ˇˇ*++*++*++*++*++*+˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹ˇ+*+*+*+*+*+˛ˇ+ˇˇ+˛ˇ +*+ˇˇ*ˇ+˛ˇ+˛ˇ+*ˇˇ+*+*+*+*+*˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$+*$+*˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*ˇ+*++*++*++*++*ˇ+*++*++*++*++*++*++˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ*+*+*+*+*+*ˇ*ˇ*+*ˇ+ˇˇ+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛≥Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*ˇ+*ˇ+ˇˇˇ*ˇ˛ˇˇ$ˇˇ$˛ˇˇ$+ˇˇ+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇû‹ˇ˛gÅ¿ˇ˝‹ˇ++*++*++*++*++*++¸ˇ++˛ˇ(+*ˇˇ*ˇ+ˇˇˇ*+ˇ+*ˇ+*++*++*++*++*++˛ˇ˚‹ˇˆ‹±ˇÔ‹¥ˇ˝‹ˇ˛Å¿ˇ˝‹1ˇ+*+*+*+*+*+*ˇ+*ˇˇˇˇˇ*ˇ+ˇˇ+*ˇˇ+ˇ˝ˇ+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ˝‹ˇ˛Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ+ˇˇ+ˇ$˛+ˇ$ˇˇ$˛+*ˇ+*$+*$+*$+*$+*$+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔ‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ‹‹ˇ˛Å¿ˇ˝‹ˇ+*++*++*++*++*++*+ˇ+*+ˇ+*˝ˇ(+ˇ*ˇ+ˇˇˇ*ˇ+*ˇˇ+*++*++*++*++*++*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÔ‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔ‹Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˜‹˛ˇ¸‹Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*ˇˇ*ˇˇ+*+*+*ˇ+*+*+*+*+*+*+*+*˛ˇˆ‹˝ˇ˛‹ˇ+*+*+*+*+*+˛ˇ0+*+*ˇ+*+*+*+*+*ˇ+*+*+*+*+*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚‹ˇˆ‹"ˇ$+*$+*$+*$+*$+*$+ˇˇ+*ˇ˛+ˇˇ˛ˇ +ˇˇ˛+ˇ$˛ˇˇ$˛ˇ+*$+*$+*$+*$+*$+*˛ˇ¸‹ÛˇJ+*$+*$+*$+*$+*$+*ˇ+*ˇ+ˇˇˇ*$˛ˇ*ˇ˛+*$ˇ*$ˇˇ$ˇˇ$+*$+*$+*$+*$+*$˛ˇ‹‹ˇ˛ºÅ¿ˇ˝‹≤ˇ˚‹ˇˆ‹ ˇ*++*++*++*++*++*+ˇˇ++ˇˇ+˛ˇ(+*ˇˇ*+ˇˇ*ˇˇ*ˇ+ˇ++*++*++*++*++*++˛ˇ¸‹ˇ¸‹˘ˇJ+*++*++*++*++*++ˇ++*+ˇ+*ˇˇ+ˇ+ˇˇ++*ˇ+*ˇ+ˇ+ˇ*++*++*++*++*++*˛ˇ‹‹ˇ˛ Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹ˇ+*+*+*+*+*+ˇˇ+ˇ˛ˇ+ˇˇ*ˇ+ˇˇˇˇ+ˇˇ+*ˇ+*+*+*+*+*+*˛ˇ¸‹ˇ¸‹˝ˇ˛‹/ˇ+*+*+*+*+*+*ˇ+*ˇ*ˇˇ*ˇ+ˇˇ+*ˇ*˝ˇ+ˇ+*+*+*+*+*˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$˛+ˇ$˛+ˇˇ+ˇˇ+ˇ$˛+*ˇ˛+ˇ$˛+ˇ$ˇ*$+*$+*$+*$+*$+*$˛ˇ¸‹ˇ˝‹ˇˇ˚‹Kˇ$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ+ˇˇˇ*$˛ˇ*$+*$˛+ˇ$+*$˛+*$+*$+*$+*$+*$+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹ˇ+*++*++*++*++*++*ˇ+ˇ+ˇ*˚ˇ+*˛ˇ*ˇˇ*ˇ+˛ˇ+*++*++*++*++*++*+˛ˇ¸‹ˇı‹ˇ*++*++*++*++*++*+˛ˇ0+*ˇˇ+ˇ+ˇˇ+ˇ+*++ˇ++ˇˇ+*ˇ+*++*++*++*++*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*ˇ+*ˇ+*+*+*ˇ*+*+*+*+*+*˛ˇ¸‹ˇı‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$+ˇ$+*$+*$ˇˇ$+*$+*$+*$+*$+*$+*˛ˇ¸‹ˇı‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ‹‹ˇ˛Å¿ˇ˝‹ ˇ+*++*++ˇ+˛ˇ<++*++*++*++*+ˇ*++*+ˇ+*++*++*++*++*++*++ˇˇ+*++*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸‹ˇı‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ‹‹ˇ˛Å¿ˇ˝‹ˇ*+*+ˇˇ*ˇ+ˇˇˇˇˇˇ˛ˇˇˇˇ*ˇ*ˇˇ*ˇ+ˇˇ+*˛ˇ*ˇˇ*˝ˇˇ*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸‹ˇı‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ‹‹ˇ˛mÅ¿ˇ˝‹ˇ+*$+*$˛+*ˇ+ˇ$˛ˇ6+ˇ$ˇˇ$˛+*$˛+*$˛+ˇˇˇ*$˛+ˇ$˛+ˇ$ˇ*$˛ˇ*$˛+ˇ$ˇ*ˇ+*$+*˛ˇ˚‹ˇˆ‹±ˇ¸‹ˇı‹≤ˇ‹‹ˇ˛∏Å¿ˇ˝‹ ˇ++*++*ˇ+˛ˇ+ˇˇˇˇ+¸ˇ*ˇ+*ˇ+*ˇˇˇ+˝ˇˇ*ˇˇ*+ˇ+*ˇˇ+*ˇˇ*+ˇ+ˇ++*++˛ˇ˚‹ˇˆ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¸‹ˇÛ‹¥ˇ‹‹ˇ˛ªÅ¿ˇ˝‹Kˇ+*+*ˇ+*ˇ+*ˇ+ˇˇ+ˇ+ˇˇ+*ˇ+*ˇ+ˇˇˇ*+ˇˇ+ˇˇ*ˇˇ*ˇ+ˇˇ*ˇ+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸‹ˇÛ‹¥ˇ‹‹ˇ˛∑Å¿ˇ˝‹Kˇ*$+*$+ˇ$ˇ*$+ˇˇ˛ˇ*$ˇˇ$˛+ˇ$+ˇ$+*ˇˇ*$˛ˇ*$ˇ*ˇ+*ˇ˛ˇ*$˛ˇ*$˛+*ˇˇ*$+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ+*++*+ˇ*++*++*++*++*++*++*++*++*++*++*++ˇ++*++*++*+ˇ+*++*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ*+*+*ˇ+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*ˇ+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹ˇ+*++*++*++*++*++*++˛ˇ.+*ˇ+ˇ++*++*++*++*++*++*++*++*++*++*+˛ˇ¸‹ˇ§‹ˇ˛≥Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹!ˇ+*+*+*+*+*+*+*ˇ+ˇˇ+˙ˇ+*ˇˇ*˛ˇ+*+*+*+*+*+*˛ˇ¸‹ˇ§‹ˇ˛fÅ¿ˇ˝‹≤ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$ˇ*$˛+ˇ$ˇˇ$˛+ˇ$+*ˇ˛+ˇ$ˇ*$+*$+*$+*$+*$+*$+*˜ˇ•‹ˇ˛∑Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚‹ˇˆ‹ˇ*++*++*++*++*++*++*+˛ˇ.+ˇ*+ˇˇ*ˇˇ*+ˇˇ*ˇˇ*+ˇ+*++*++*++*++*++*++˛ˇ¸‹ˇ§‹ˇ˛òÅfi@ÄfiHHˆtå&¶Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  608. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Äfi∫6˙'∑Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*ˇ*ˇ+ˇˇˇˇ+ˇˇ*ˇ+ˇˇ*+*+*+*+*+*+*˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*ˇ˛ˇˇ$˛+*ˇ˛+ˇ$˛+*$˛ˇˇ$˛ˇˇ$+*$+*$+*$+*$+*$+*$˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*ˇ+*++*++*++*++*++*++*+˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹ˇ*$+*$˛˛ˇ@+ˇ$+*$˛+*$ˇ*$+*$˛+*$+*$+*$+*$+*$+*$+*ˇ+ˇ$˛+*$+ˇ$˛+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸‹ˇ§‹ˇ˛∑Å¿ˇ˝‹ ˇ+*++ˇˇ+*ˇ˛ˇ+*ˇ+˛ˇ+*+ˇ+*ˇ+ˇˇ+*+ˇ+ˇ+˛ˇ+*ˇˇ+ˇˇˇˇ+ˇ*ˇ+*+ˇˇ*+ˇ+*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸‹ˇ§‹ˇ˛mÅ¿ˇ˝‹Kˇ*+*ˇˇ+*+ˇˇ+*ˇ+ˇˇ*+*ˇˇ+ˇˇ*ˇ*ˇ+ˇˇ*ˇ+ˇˇ+*ˇ+ˇˇ+ˇ+ˇˇ*˛ˇ˚‹ˇˆ‹±ˇ¸‹ˇı‹¥ˇ˝‹ˇ˛Å¿ˇ˝‹!ˇ+*$ˇˇ$+*$˛+ˇ$+ˇ$˛+*ˇ+*$ˇˇ$˛˛ˇ&+*ˇˇ*$˛+*ˇˇ*$˛ˇ*$ˇ*$˛+ˇ$+*$˛+*ˇ+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ¸‹ˇı‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ˝‹ˇ˛Å¿ˇ˝‹Kˇ++*+ˇˇ*+ˇ*ˇˇ*+ˇ*ˇ+ˇ++*+ˇˇ*ˇ+*++ˇ+ˇ+*ˇ+ˇ+ˇ+*ˇˇ+*+ˇ+*ˇˇ*+ˇ+*ˇ+ˇ++˛ˇ˚‹ˇˆ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ¸‹ˇı‹Kˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹ˇ+*ˇ*˛ˇ
  609. *ˇ+ˇ+ˇ˛ˇ+*ˇ+ˇˇˇ+ˇˇ+*˛ˇ+ˇˇˇ*ˇ*ˇ+ˇ+*ˇ+*ˇ+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸‹ˇı‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$ˇ*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ¸‹ˇı‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*++*ˇ+*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*ˇ+*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ¸‹ˇı‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ‹‹ˇ˛ Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ¸‹ˇ˝‹˛ˇ¸‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ‹‹ˇ˛ Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+ˇ$ˇ*ˇ+*ˇˇ*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$˛ˇ¸‹ˇ¸‹˝ˇ˛‹Kˇ$+*$+*$+*$+*$˛ˇˇ$+*$+ˇ$+*$+*$+*$+*$+*$ˇ*ˇ˛+*$+*$+*$+*$+*$+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹ˇ+*++*++*++*++*++*+ˇ+˙ˇ+ˇ+˛ˇ$+ˇ+ˇ+ˇˇ+ˇˇ*+ˇ+*++*++*++*++*++*+˛ˇ¸‹Ûˇ%*++*++*++*++ˇ++ˇ+ˇˇ+ˇ*ˇˇ+*ˇˇ+*+˛ˇ!+ˇˇ*+ˇˇ*ˇˇ+ˇˇ+ˇˇ+*++*++*++*+˛ˇ‹‹ˇ˛∏Å¿ˇ˝‹≤ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*ˇ*ˇˇ*ˇˇ+*ˇˇ*ˇˇ*ˇ+*ˇˇ+*ˇˇ+*+*+*+*+*+*˛ˇˆ‹˘ˇJ+*+*+*+*ˇ+*ˇ*ˇ+ˇˇ+ˇˇ+*ˇ*ˇˇ*ˇ+*ˇˇ*ˇˇ+ˇˇ*+*+*+*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ˚‹ˇˆ‹ˇ$+*$+*$+*$+*$+*$+ˇˇ˛˛ˇˇˇ$ˇ*ˇ+ˇˇˇ*$˛ˇ˛ˇ*ˇ+*$+*$+*$+*$+*$+*˛ˇˆ‹˝ˇ˛‹8ˇ+*$+*$+*$+*$ˇ*$+*ˇ+ˇ$˛ˇ*$˛+ˇ$+*ˇ+ˇˇ+ˇ$ˇ*ˇˇˇ$˛˛ˇ+*$+*$+*$+*$˛ˇ‹‹ˇ˛    Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇ˚‹ˇˆ‹Lˇ*++*++*++*++*++*+ˇ*+ˇˇ+ˇˇ*+ˇ+ˇ+ˇˇ+ˇ+*+ˇˇ*++*ˇ+*++*++*++*++*++˛ˇ˜‹ˇˇ˚‹Kˇ+*++*++*++*+ˇ+*+ˇ+ˇ+ˇ*ˇˇ+*ˇˇ*++ˇ+ˇˇ+ˇ*+ˇ+ˇ+ˇˇ*ˇ+*++*++*++*++*˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ˚‹ˇˆ‹$ˇ+*+*+*+*+*+ˇ+ˇˇˇˇˇ*˛ˇ*˛ˇ *ˇ*ˇˇ+*ˇ+*+*+*+*+*+*˛ˇÔ‹ˇ+*+*+*+*+˛ˇ+*ˇˇ*ˇ+ˇˇ+ˇ+*˛ˇ!*ˇ+*ˇˇ+*ˇˇˇˇˇ+*+*+*+*˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇ˚‹ˇˆ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔ‹Kˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇ˚‹ˇˆ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔ‹Kˇ*++*++*++*++*++*++*++*++*++*+ˇ+*++*++*++*++*++*++*++*++*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹Kˇ+*+*+*ˇˇ+*ˇ+*+*+*+*ˇ*+*+*ˇ+*+*+*ˇˇ*+*ˇˇ*+*+*˛ˇ˚‹ˇˆ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+˛ˇ‹‹ˇ˛Å¿ˇ˝‹ˇ*$+*$+*$˛+ˇ$+ˇ$ˇˇ$+ˇ$˛+*$˛ˇ(+ˇˇˇ*$ˇ*$˛ˇ*$˛ˇ*$ˇ*ˇ+ˇ$ˇˇ$˛+*$+*$˛ˇ˚‹ˇˆ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔ‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ‹‹ˇ˛eÅ¿ˇ˝‹Kˇ+*++*++*ˇ+ˇ+ˇ+*ˇ+ˇ+ˇ*ˇ+*ˇ+ˇ+ˇ+*ˇˇ*ˇˇ+ˇ+ˇˇ+ˇ*+ˇ+ˇ+ˇ+*+ˇ*ˇ+*++*+˜ˇˆ‹±ˇÔ‹≤ˇ‹‹ˇ˛∞Å¿ˇ˝‹ˇ*+*+*ˇ+*ˇˇ*˝ˇ +ˇˇ+*ˇ+*ˇ˝ˇ    +ˇˇˇ*ˇ+*˝ˇˇ*ˇ+ˇ+ˇˇ+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÌ‹¥ˇ‹‹ˇ˛≥Å¿ˇ˝‹Kˇ+*$+*$+ˇ$ˇ*ˇ+ˇ$+*$˛+ˇ$+ˇ$ˇ*ˇ+*$˛+ˇˇˇ*$˛ˇ*$+*ˇˇ*$ˇ*$˛+ˇ$+*$+*˛ˇÔ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÌ‹¥ˇ‹‹ˇ˛ØÅ¿ˇ˝‹ˇ++*++*+ˇ*+ˇ*++ˇˇ+*+ˇ+ˇ++˛ˇ(+*ˇˇ+*+ˇ+ˇ+ˇˇ+ˇˇ++ˇ+ˇ+*ˇ+*ˇˇ*++*++˛ˇÔ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+ˇ+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ*$+*$+*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$˛ˇÔ‹Lˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔ‹Lˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇû‹ˇ˛≠Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹ˇ+*+*+*+*+*+*¸ˇ,*+*+*ˇˇ+*ˇ*+*+*+*+*+*+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔ‹$ˇ+*$+*$+*$+*$+*$+*$+*$ˇ*$ˇˇ$˛ˇ$+*ˇ˛+*ˇ+ˇˇ+*$+*$+*$+*$+*$+*$˛ˇû‹ˇ˛bÅ¿ˇ˝‹≤ˇÔ‹!ˇ+*++*++*++*++*++*++*+ˇ+*+˛ˇ'+ˇ++ˇˇˇ*++ˇ++*++*++*++*++*++*+˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*ˇ*ˇˇ*ˇˇ+*ˇ+*ˇˇ+*ˇ+*ˇ+*+*+*+*+*+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÔ‹Lˇ$+*$+*$+*$+*$+*$+*$+*ˇ+ˇ$ˇˇ$ˇ*$ˇˇ$+ˇ$ˇ*$+*$+*$+*$+*$+*$+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÔ‹ ˇ*++*++*++*++*++*++*++ˇ++˛ˇ+˛ˇ$+*+ˇˇ*+ˇ+*+ˇ+*++*++*++*++*++*++˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*ˇ*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÔ‹Lˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇû‹ˇ˛ØÅ¿ˇ˝‹Kˇ++*++*++*++*++*++*ˇ+*ˇˇ*+ˇˇ++*++*+ˇ+*++*++*++*++*++*++*++˛ˇÔ‹Lˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇû‹ˇ˛´Å¿ˇ˝‹ˇ+*+*+*+*+*+*ˇˇ*˚ˇ+˝ˇ$*ˇ+ˇˇˇ*ˇˇ*ˇ+*+*+*+*+*+*˛ˇÔ‹Lˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇû‹ˇ˛aÅ¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$ˇ*ˇ+ˇ$˛ˇ*$˛ˇ*$˛+ˇ$˛+*ˇˇ*$˛ˇ*$+*$+*$+*$+*$+*$˛ˇÔ‹±ˇû‹ˇ˛^Å¿ˇ˝‹ˇ+*++*++*++*++*++*¸ˇˇ*ˇˇ+*ˇˇ+*ˇˇ*ˇ+ˇ+˝ˇˇ*++*++*++*++*++*+˛ˇÌ‹≥ˇû‹ˇ˛aÅ¿ˇ˝‹Kˇ*+*+*+*+*+*ˇ+*ˇ+ˇˇˇ*ˇˇ*ˇ+ˇˇ+*ˇˇ*+*ˇ+*+*+*+*+*˛ˇÌ‹≥ˇû‹ˇ˛_Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+ˇ$+ˇ$˛+ˇˇ+ˇˇ˛ˇ*$˛ˇˇ$ˇ*$˛ˇ*$˛+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛Å¿ˇ˝‹≤ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹ˇ+*$+*$+*$+*$˛˛ˇ6+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹ˇ++*++*++*++ˇ++*ˇ+ˇ+ˇ+˛ˇ+*+ˇˇ*ˇˇ+*+ˇˇ+ˇˇ+ˇ*ˇ˛ˇ+ˇˇ+*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*ˇ+*ˇ+*ˇˇ*ˇˇ*ˇ+*ˇˇ+*ˇ*ˇˇ*ˇ+ˇˇ+ˇˇ+*ˇ+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$ˇ*$+ˇ$ˇ*ˇˇ*ˇ+ˇˇ˛ˇˇ$+*ˇ+*ˇ+ˇ$˛+ˇ$˛+ˇ$+ˇ$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*++*++*++*+ˇ+*+ˇ*+ˇ+ˇ+ˇ+ˇ+ˇ*+ˇ*++ˇ+ˇˇ+ˇ*ˇˇ*ˇˇ*+ˇ*++*++*++*+˛ˇÅ‹º‹ˇ˛^Å¿ˇ˝‹ˇ*+*+*+*+˝ˇ*+ˇˇˇ*ˇ+*ˇˇ+ˇ+*ˇˇ*ˇˇ*˛ˇˇ+ˇ+ˇ+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛òÅfiÄ¢fiHHˆtê&ßIJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  610. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄ¢fi˙6'_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛Å¿ˇ˝‹≤ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛]Å¿ˇ˝‹ˇ*+*+*+*+*+*+*¸ˇ,+*+*+*ˇˇ*+*ˇ+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*ˇ+*ˇ˛+*$˛ˇˇ$ˇ*ˇ+ˇ$ˇˇ$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++ˇ++*ˇˇ+ˇ+ˇ*+ˇ+ˇ+ˇ+*+ˇ*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*ˇ+ˇˇˇ*ˇ+ˇˇ*ˇ+ˇ+ˇ+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$ˇ*$˛+*ˇˇ*$˛+*ˇˇ*$ˇ*$˛+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹ˇ+*++*++*++*++*++*++*+ˇ+*+˛ˇ+˛ˇ#+ˇ+ˇ+*ˇ+*ˇ+*++*++*++*++*++*+˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*˛ˇÅ‹º‹ˇ˛_Å¿ˇ˝‹Kˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇÅ‹º‹ˇ˛Å¿ˇ˝‹≤ˇÅ‹º‹ˇ˛Å¿ˇ˚‹¥ˇÅ‹º‹ˇ˛Å¿ˇ˚‹¥ˇÅ‹º‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛Å¿ˇÅ‹Å‹È‹ˇ˛ Å¿ÅˇÅˇÁˇ˛ÅÅÅ£ÅÅÅ£ÅÅÅ£†è†É†ø
  611. d,     Helvetica    .°dONLNd
  612. @(16Figure 2°dONLNd    !¡* 'The Shape Object and What It References u4u&, Palatino (x) +
  613. 9(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ -9 162 469 647]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2.2%%For: (Robin Gold) (Forbes Mill Press)%%Title: (\245 Alexander_Fig 02 v.4)%%CreationDate: (7/6/93) (10:01 PM)%%BoundingBox: -9 162 469 647%%DocumentProcessColors: Black%%DocumentFonts: Helvetica%%+ Helvetica-Bold%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_typography_AI3 1.0 1%%+ procset Adobe_IllustratorA_AI3 1.0 1%AI3_ColorUsage: Color%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: -35 151 478 667%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_typography_AI3 1.1 0%%Title: (Typography Operators)%%Version: 1.0 %%CreationDate:(5/31/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_typography_AI3 47 dict dup begin put/initialize            % - initialize -{/TZ where    {    pop    }    {    Adobe_typography_AI3 begin    Adobe_typography_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_typography_AI3 begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_typography_AI3 eq    {    end    } if} def% [ number value stream [ array for encoding modification ] modifyEncoding ==> [ modified array ]/modifyEncoding{    /_tempEncode exch ddef        % pointer for sequential encodings    /_pntr 0 ddef        {        % get bottom object        counttomark -1 roll        % is it a mark ?        dup type dup /marktype eq                 {            % exit            pop pop exit        }        {            % ... object ... type ....            % insert if a nametype            /nametype eq            {                % insert the name at _pntr and increment pointer                _tempEncode /_pntr dup load dup 3 1 roll 1 add ddef 3 -1 roll                put            }            {                % reset _pntr if it's a number                /_pntr exch ddef                                }            ifelse        }        ifelse    }    loop            % return the modified encoding    _tempEncode}def/TE    % Set std platform encoding     % (encoding pairs) TE -{    StandardEncoding 256 array copy modifyEncoding     /_nativeEncoding exch def} def% re-define font% expected arguments% for 'normal fonts : % [ /_Helvetica-Bold/Helvetica-Bold direction fontScript defaultEncoding TZ%% for cartographic, pictographic, and expert fonts :% [ ... number value stream ... /_Symbol/Symbol %    direction fontScript defaultEncoding TZ% for blended fonts w/ default encoding :% [ /_AdobeSans_20ULig1XCond-Bold/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ% for blended fonts w/ special encoding :% [ ... number value stream ... /_AdobeSans_20ULig1XCond/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ/TZ        {    % set weight vector (if present)    dup type /arraytype eq {/_wv exch def} {/_wv 0 def} ifelse     % platform dependent coding flag    /_useNativeEncoding exch def    % pop fontScript & direction    pop pop        % create a new dictionary with length    % equal to original dictionary length + 2    % copy all the key/value pairs except FID    % call makeblended font with the weight values if _wv is an array    findfont _wv type /arraytype eq {_wv makeblendedfont} if dup length 2 add dict        begin            % copy all the values but the FID        % into the new dictionary        mark exch        {            1 index /FID ne { def } if cleartomark mark        }        forall        % discard last mark        pop                % define FontName        /FontName exch def                % if no re-encoding stream is present        % then if the base encoding vector of the font        % is the same as StandardEncoding        % and the use platform encoding flag is true        % then install AI platform encoding        % else leave the base encoding in effect        counttomark 0 eq        {            1 _useNativeEncoding eq            {                /Encoding _nativeEncoding def            }            if            % clean up            cleartomark        }        {                % custom encoding to be done            % start off with a copy of the font's standard encoding            /Encoding load 256 array copy             modifyEncoding /Encoding exch def        }        ifelse                FontName currentdict    end        % register the new font    definefont pop}def% text painting operators/tr                    % string tr ax ay string {_ax _ay 3 2 roll} def/trj                % string trj cx cy fillchar ax ay string {_cx _cy _sp _ax _ay 6 5 roll} def/a0{/Tx    % text                            % textString Tx -    {    dup     currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    dup    currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    } ddef    } def/a°¿ 1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    grestore 3 1 roll moveto tr sp    } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp    } ddef    } def/e0{/Tx    % text                            % textString Tx -    {    tr _psf    } ddef/Tj    % justified text                % textString Tj -    {    trj _pjsf    } ddef} def/e1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave     tr _psf      grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave     trj _pjsf    grestore 3 1 roll moveto tr sp     } ddef} def/i0{/Tx    % text                            % textString Tx -    {    tr sp    } ddef/Tj    % justified text                % textString Tj -    {    trj jsp    } ddef} def/i1{W N} def/o0{/Tx    % text                            % textString Tx -    {    tr sw rmoveto    } ddef/Tj    % justified text                % textString Tj -    {    trj swj rmoveto    } ddef} def/r0{/Tx    % text                            % textString Tx -    {    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    trj _ctm _pjss    } ddef} def/r1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    tr _ctm _pss     grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp     } ddef} def% font operators% Binding/To    % begin text                     % bindType To -{    pop _ctm currentmatrix pop} def/TO    % end text                    % TO -{    Te _ctm setmatrix newpath} def% Text paths/Tp    % begin text path                % a b c d tx ty startPt Tp -{    pop _tm astore pop _ctm setmatrix     _tDict begin /W {} def /h {} def} def/TP    % end text path                    % TP -{    end    iTm 0 0 moveto} def% Render mode & matrix operators/Tr    % begin render                    % render Tr - {    _render 3 le {currentpoint newpath moveto} if    dup 8 eq {pop 0} {dup 9 eq {pop 1} if} ifelse    dup /_render exch ddef    _renderStart exch get load exec} def/iTm % internal set text matrix        % - iTm -    (uses _tm as implicit argument){_ctm setmatrix _tm concat 0 _rise translate _hs 1 scale} def/Tm % set text matrix                % a b c d tx ty Tm -{_tm astore pop iTm 0 0 moveto} def/Td % translate text matrix         % tx ty Td -{_mtx translate _tm _tm concatmatrix pop iTm 0 0 moveto} def/Te    % end render                    % - Te -{    _render -1 eq {} {_renderEnd _render get dup null ne {load exec} {pop} ifelse} ifelse    /_render -1 ddef} def% Attributes/Ta    % set alignment                    % alignment Ta -{pop} def/Tf    % set font name and size        % fontname size Tf -{dup 1000 div /_fScl exch ddefexch findfont exch scalefont setfont} def/Tl    % set leading                    % leading paragraphLeading Tl -{pop0 exch _leading astore pop} def/Tt    % set user tracking                % userTracking Tt -{pop} def/TW % set word spacing                % minSpace optSpace maxSpace TW -{3 npop} def/Tw    % set computed word spacing        % wordSpace Tw{/_cx exch ddef} def/TC % set character spacing            % minSpace optSpace maxSpace TC -{3 npop} def/Tc    % set computed char spacing     % charSpace Tc -{/_ax exch ddef} def/Ts % set super/subscripting (rise)    % rise Ts -{/_rise exch ddefcurrentpointiTmmoveto} def/Ti    % set indentation                % firstStartIndent otherStartIndent stopIndent Ti -{3 npop} def/Tz % set horizontal scaling        % scalePercent Tz -{100 div /_hs exch ddefiTm} def/TA % set pairwise kerning            % autoKern TA -                                    %    autoKern = 0 -> no pair kerning                                    %             = 1 -> automatic pair kerning{pop} def/Tq % set hanging quotes            % hangingQuotes Tq -                                    %    hangingQuotes     = 0 -> no hanging quotes                                    %                     = 1 -> hanging quotes{pop} def% Text Bodies/TX {pop} def%/Tx    % non-justified text            % textString Tx -%/Tj    % justified text                % textString Tj -/Tk    % kern                            % autoKern kernValue Tk -                                    %      autoKern = 0 -> manual kern, = 1 -> auto kern                                    %    kernValue = kern value in em/1000 space{exch pop _fScl mul neg 0 rmoveto} def/TK    % non-printing kern                % autoKern kernValue TK -{2 npop} def/T* % carriage return & line feed    % - T* -{_leading aload pop neg Td} def/T*- % carriage return & negative line feed    % - T*- -{_leading aload pop Td} def/T-    % print a discretionary hyphen    % - T- -{_hyphen Tx} def/T+    % discretionary hyphen hyphen    % - T+ -{} def/TR    % reset pattern matrix             % a b c d tx ty TR -{_ctm currentmatrix pop     _tm astore pop iTm 0 0 moveto } def/TS    % special chars                    % textString justified TS -{0 eq {Tx} {Tj} ifelse} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_IllustratorA_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Abbreviated Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_IllustratorA_AI3 61 dict dup begin put% initialization/initialize                % - initialize -{% 47 vars, but leave slack of 10 entries for custom Postscript fragmentsuserdict /Adobe_IllustratorA_AI3_vars 57 dict dup begin put% paint operands/_lp /none def/_pf {} def/_ps {} def/_psf {} def/_pss {} def/_pjsf {} def/_pjss {} def/_pola 0 def/_doClip 0 def% paint operators/cf    currentflat def    % - cf flatness% typography operands/_tm matrix def/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def /_renderEnd [null null null null /i1 /i1 /i1 /i1] def/_render -1 def/_rise 0 def/_ax 0 def            % x character spacing    (_ax, _ay, _cx, _cy follows awidthshow naming convention)/_ay 0 def            % y character spacing/_cx 0 def            % x word spacing/_cy 0 def            % y word spacing/_leading [0 0] def/_ctm matrix def/_mtx matrix def/_sp 16#020 def/_hyphen (-) def/_fScl 0 def/_cnt 0 def/_hs 1 def/_nativeEncoding 0 def/_useNativeEncoding 0 def/_tempEncode 0 def/_pntr 0 def/_tDict 2 dict def% typography operators/Tx {} def/Tj {} def% compound path operators/CRender {} def% printing/_AI3_savepage {} def% color operands/_gf null def/_cf 4 array def/_if null def/_of false def/_fc {} def/_gs null def/_cs 4 array def/_is null def/_os false def/_sc {} def/_i null defAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3    {    dup xcheck        {        bind        } if    pop pop    } forallendendAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3_vars beginnewpath} def/terminate                % - terminate -{endend} def% definition operators/_                    % - _ nullnull def/ddef                % key value ddef -{Adobe_IllustratorA_AI3_vars 3 1 roll put} def/xput                % key value literal xput -{dup load dup length exch maxlength eq    {    dup dup load dup    length 2 mul dict copy def    } ifload begin def end} def/npop                % integer npop -{    {    pop    } repeat} def% marking operators/sw                    % ax ay string sw x y {dup length exch stringwidthexch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add} def/swj                % cx cy fillchar ax ay string swj x y{dup 4 1 rolldup length exch stringwidth exch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add 6 2 roll /_cnt 0 ddef{1 index eq {/_cnt _cnt 1 add ddef} if} forall popexch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop} def/ss                    % ax ay string matrix ss -{4 1 roll    {                % matrix ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put pop    gsave    false charpath currentpoint    4 index setmatrix    stroke    grestore    moveto    2 copy rmoveto    } exch cshow3 npop} def/jss                % cx cy fillchar ax ay string matrix jss -{4 1 roll    {                % cx cy fillchar matrix ax ay char 0 0 {proc} -       2 npop     (0) exch 2 copy 0 exch put     gsave    _sp eq         {        exch 6 index 6 index 6 index 5 -1 roll widthshow          currentpoint        }        {        false charpath currentpoint        4 index setmatrix stroke        }ifelse    grestore    moveto    2 copy rmoveto    } exch cshow6 npop} def% path operators/sp                    % ax ay string sp -{    {    2 npop (0) exch    2 copy 0 exch put pop    false charpath    2 copy rmoveto    } exch cshow2 npop} def/jsp                    % cx cy fillchar ax ay string jsp -{    {                    % cx cy fillchar ax °¿ ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put     _sp eq         {        exch 5 index 5 index 5 index 5 -1 roll widthshow          }        {        false charpath        }ifelse    2 copy rmoveto    } exch cshow5 npop} def% path construction operators/pl                % x y pl x y{transform0.25 sub round 0.25 add exch0.25 sub round 0.25 add exchitransform} def/setstrokeadjust where    {    pop true setstrokeadjust    /c                % x1 y1 x2 y2 x3 y3 c -    {    curveto    } def    /C    /c load def    /v                % x2 y2 x3 y3 v -    {    currentpoint 6 2 roll curveto    } def    /V    /v load def    /y                % x1 y1 x2 y2 y -    {    2 copy curveto    } def    /Y    /y load def    /l                % x y l -    {    lineto    } def    /L    /l load def    /m                % x y m -    {    moveto    } def    }    {%else    /c    {    pl curveto    } def    /C    /c load def    /v    {    currentpoint 6 2 roll pl curveto    } def    /V    /v load def    /y    {    pl 2 copy curveto    } def    /Y    /y load def    /l    {    pl lineto    } def    /L    /l load def    /m    {    pl moveto    } def    }ifelse% graphic state operators/d                    % array phase d -{setdash} def/cf    {} def            % - cf flatness/i                    % flatness i -{dup 0 eq    {    pop cf    } ifsetflat} def/j                    % linejoin j -{setlinejoin} def/J                    % linecap J -{setlinecap} def/M                    % miterlimit M -{setmiterlimit} def/w                    % linewidth w -{setlinewidth} def% path painting operators/H                    % - H -{} def/h                    % - h -{closepath} def/N                    % - N -{_pola 0 eq     {    _doClip 1 eq {clip /_doClip 0 ddef} if     newpath    }     {    /CRender {N} ddef    }ifelse} def/n                    % - n -{N} def/F                    % - F -{_pola 0 eq     {    _doClip 1 eq         {        gsave _pf grestore clip newpath /_lp /none ddef _fc         /_doClip 0 ddef        }        {        _pf        }ifelse    }     {    /CRender {F} ddef    }ifelse} def/f                    % - f -{closepathF} def/S                    % - S -{_pola 0 eq     {    _doClip 1 eq         {        gsave _ps grestore clip newpath /_lp /none ddef _sc         /_doClip 0 ddef        }        {        _ps        }ifelse    }     {    /CRender {S} ddef    }ifelse} def/s                    % - s -{closepathS} def/B                    % - B -{_pola 0 eq     {    _doClip 1 eq     % F clears _doClip    gsave F grestore         {        gsave S grestore clip newpath /_lp /none ddef _sc        /_doClip 0 ddef        }         {        S        }ifelse    }    {    /CRender {B} ddef    }ifelse} def/b                    % - b -{closepathB} def/W                    % - W -{/_doClip 1 ddef} def/*                    % - [string] * -{count 0 ne     {    dup type (stringtype) eq {pop} if    } if _pola 0 eq {newpath} if} def% group operators/u                    % - u -{} def/U                    % - U -{} def/q                    % - q -{_pola 0 eq {gsave} if} def/Q                    % - Q -{_pola 0 eq {grestore} if} def/*u                    % - *u -{_pola 1 add /_pola exch ddef} def/*U                    % - *U -{_pola 1 sub /_pola exch ddef _pola 0 eq {CRender} if} def/D                    % polarized D -{pop} def/*w                    % - *w -{} def/*W                    % - *W -{} def% place operators/`                    % matrix llx lly urx ury string ` -{/_i save ddef6 1 roll 4 npopconcat popuserdict begin/showpage {} def0 setgray0 setlinecap1 setlinewidth0 setlinejoin10 setmiterlimit[] 0 setdashnewpath0 setgrayfalse setoverprint} def/~                    % - ~ -{end_i restore} def% color operators/O                    % flag O -{0 ne/_of exch ddef/_lp /none ddef} def/R                    % flag R -{0 ne/_os exch ddef/_lp /none ddef} def/g                    % gray g -{/_gf exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _gf setgray    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/G                    % gray G -{/_gs exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _gs setgray    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/k                    % cyan magenta yellow black k -{_cf astore pop/_fc{_lp /fill ne    {    _of setoverprint    _cf aload pop setcmykcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/K                    % cyan magenta yellow black K -{_cs astore pop/_sc{_lp /stroke ne    {    _os setoverprint    _cs aload pop setcmykcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/x                    % cyan magenta yellow black name gray x -{/_gf exch ddeffindcmykcustomcolor/_if exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _if _gf 1 exch sub setcustomcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/X                    % cyan magenta yellow black name gray X -{/_gs exch ddeffindcmykcustomcolor/_is exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _is _gs 1 exch sub setcustomcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def% locked object operator/A                    % value A -{pop} defcurrentdict readonly pop endsetpacking% annotate page operator/annotatepage{} def%%EndResource%%EndProlog%%BeginSetup%%IncludeFont: Helvetica%%IncludeFont: Helvetica-BoldAdobe_cmykcolor /initialize get execAdobe_cshow /initialize get execAdobe_customcolor /initialize get execAdobe_typography_AI3 /initialize get execAdobe_IllustratorA_AI3 /initialize get exec[39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caronTE%AI3_BeginEncoding: _Helvetica Helvetica[/_Helvetica/Helvetica 0 0 1 TZ%AI3_EndEncoding TrueType%AI3_BeginEncoding: _Helvetica-Bold Helvetica-Bold[/_Helvetica-Bold/Helvetica-Bold 0 0 1 TZ%AI3_EndEncoding TrueType%%EndSetup0 A0 O0 g0 i 0 J 0 j 1 w 4 M []0 d%AI3_Note:0 D72.954 378 m72.954 548 L-3.546 548 L-3.546 378 L72.954 378 Lf365.25 377.9437 m365.25 462.9437 L288.75 462.9437 L288.75 377.9437 L365.25 377.9437 Lf170.375 310 m170.375 412 L93.875 412 L93.875 310 L170.375 310 Lf0.9 g0 R0 G465.8125 165 m465.8125 370 L184.3125 370 L184.3125 165 L465.8125 165 Lb0 g462.7812 267.5 m462.7812 284.5 L386.2812 284.5 L386.2812 267.5 L462.7812 267.5 Lf462.7812 233.5 m462.7812 250.5 L386.2812 250.5 L386.2812 233.5 L462.7812 233.5 Lf267.8125 174 m267.8125 344 L191.3125 344 L191.3125 174 L267.8125 174 Lf365.2812 216.5 m365.2812 301.5 L288.7812 301.5 L288.7812 216.5 L365.2812 216.5 Lf1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G460.7812 269.5 m460.7812 286.5 L384.2812 286.5 L384.2812 269.5 L460.7812 269.5 Lb0 To1 0 0 1 422.5312 274.625 0 TpTP-16 0 Td0 Tr0 g/_Helvetica 8 Tf0 Ts100 Tz0 Tt0 TA0 0 5 TC100 100 200 TW0 0 0 Ti1 Ta0 Tq9 0 Tl0 Tc0 Tw(Color set) Tx (\r) TX TO1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G460.7812 235.5 m460.7812 252.5 L384.2812 252.5 L384.2812 235.5 L460.7812 235.5 Lb0 To1 0 0 1 422.5312 240.625 0 TpTP-21.5537 0 Td0 Tr0 g(Color profile) Tx (\r) TX TOu1 O378.4747 278.0666 m376.9241 275.7264 l383.2812 278 L376.9895 280.4488 l378.4747 278.0666 LfUu378.4747 244.0666 m376.9241 241.7264 l383.2812 244 L376.9895 246.4488 l378.4747 244.0666 LfU0 O1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G363.2812 218.5 m363.2812 303.5 L286.7812 303.5 L286.7812 218.5 L363.2812 218.5 Lb0 To1 0 0 1 325.0312 291.625 0 TpTP-18.8°¿ 926 0 Td0 Tr0 g(Clip shape) Tx (\r) TX TO0 To1 0 0 1 325.0312 274.625 0 TpTP-15.3369 0 Td0 Tr(Mapping) Tx (\r) TX TO0 R0 G286.7812 286.5 m363.2812 286.5 lS0 To1 0 0 1 325.0312 257.625 0 TpTP-12.4453 0 Td0 Tr0 O0 g(Bitmap) Tx (\r) TX TO0 R0 G286.7812 269.5 m363.2812 269.5 lS0 To1 0 0 1 325.0312 240.625 0 TpTP-16.8916 0 Td0 Tr0 O0 g(Attributes) Tx (\r) TX TO0 R0 G286.7812 252.5 m363.2812 252.5 lS0 To1 0 0 1 325.0312 223.625 0 TpTP-12.8887 0 Td0 Tr0 O0 g(Tag list) Tx (\r) TX TO0 R0 G286.7812 235.5 m363.2812 235.5 lSu1 O0 g280.9747 295.0666 m279.4241 292.7264 l285.7812 295 L279.4895 297.4488 l280.9747 295.0666 LfU0 O1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G265.8125 176 m265.8125 346 L189.3125 346 L189.3125 176 L265.8125 176 Lb0 To1 0 0 1 227.5625 334.125 0 TpTP-18.8926 0 Td0 Tr0 g(Clip shape) Tx (\r) TX TO0 To1 0 0 1 227.5625 317.125 0 TpTP-15.3369 0 Td0 Tr(Mapping) Tx (\r) TX TO0 R0 G189.3125 329 m265.8125 329 lS0 To1 0 0 1 227.5625 300.125 0 TpTP-10.665 0 Td0 Tr0 O0 g(Dither) Tx (\r) TX TO0 R0 G189.3125 312 m265.8125 312 lS0 To1 0 0 1 227.5625 283.125 0 TpTP-14.8926 0 Td0 Tr0 O0 g(Halftone) Tx (\r) TX TO0 R0 G189.3125 295 m265.8125 295 lS0 To1 0 0 1 227.5625 266.125 0 TpTP-30.9235 0 Td0 Tr0 O0 g98 Tz(\(Parent view port\)) Tx (\r) TX TO0 R0 G189.3125 278 m265.8125 278 lS0 To1 0 0 1 227.5625 249.125 0 TpTP-34.184 0 Td0 Tr0 O0 g(\(Child view port list\)) Tx (\r) TX TO0 R0 G189.3125 261 m265.8125 261 lS0 To1 0 0 1 227.5625 232.125 0 TpTP-29.397 0 Td0 Tr0 O0 g(\(View device list\)) Tx (\r) TX TO0 R0 G189.3125 244 m265.8125 244 lS0 To1 0 0 1 227.5625 215.125 0 TpTP-16.8916 0 Td0 Tr0 O0 g100 Tz(Attributes) Tx (\r) TX TO0 R0 G189.3125 227 m265.8125 227 lS0 To1 0 0 1 227.5625 198.125 0 TpTP-22.6709 0 Td0 Tr0 O0 g(Owner count) Tx (\r) TX TO0 R0 G189.3125 210 m265.8125 210 lS0 To1 0 0 1 227.5625 181.125 0 TpTP-12.8887 0 Td0 Tr0 O0 g(Tag list) Tx (\r) TX TO0 R0 G189.3125 193 m265.8125 193 lS0 To1 0 0 1 227.5625 349.875 0 TpTP-30.8867 0 Td0 Tr0 O0 g/_Helvetica-Bold 8 Tf(View port object) Tx (\r) TX TO0 To1 0 0 1 325.0312 307.375 0 TpTP-35.5625 0 Td0 Tr(View device object) Tx (\r) TX TO0 To1 0 0 1 130.125 417.875 0 TpTP-32.6631 0 Td0 Tr(Transform object) Tx (\r) TX TOu1 O183.506 337.5666 m181.9554 335.2264 l188.3125 337.5 L182.0208 339.9488 l183.506 337.5666 LfU0 O1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G168.375 312 m168.375 414 L91.875 414 L91.875 312 L168.375 312 Lb0 To1 0 0 1 130.125 402.125 0 TpTP-18.8926 0 Td0 Tr0 g/_Helvetica 8 Tf(Clip shape) Tx (\r) TX TO0 To1 0 0 1 130.125 385.125 0 TpTP-15.3369 0 Td0 Tr(Mapping) Tx (\r) TX TO0 R0 G91.875 397 m168.375 397 lS0 To1 0 0 1 130.125 368.125 0 TpTP-25.3281 0 Td0 Tr0 O0 g(\(View port list\)) Tx (\r) TX TO0 R0 G91.875 380 m168.375 380 lS0 To1 0 0 1 130.125 351.125 0 TpTP-16.8916 0 Td0 Tr0 O0 g(Attributes) Tx (\r) TX TO0 R0 G91.875 363 m168.375 363 lS0 To1 0 0 1 130.125 334.125 0 TpTP-22.6709 0 Td0 Tr0 O0 g(Owner count) Tx (\r) TX TO0 R0 G91.875 346 m168.375 346 lS91.875 329 m168.375 329 lS0 To1 0 0 1 130.125 317.125 0 TpTP-12.8887 0 Td0 Tr0 O0 g(Tag list) Tx (\r) TX TO246.875 480 m246.875 633 L93.875 633 L93.875 480 L246.875 480 Lf1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G244.875 482 m244.875 635 L91.875 635 L91.875 482 L244.875 482 Lb91.875 618 m244.875 618 lS91.875 601 m244.875 601 lS91.875 584 m244.875 584 lS91.875 567 m244.875 567 lS91.875 550 m244.875 550 lS91.875 533 m244.875 533 lS91.875 516 m244.875 516 lS91.875 499 m244.875 499 lS0 To1 0 0 1 168.375 638.875 0 TpTP-22.4453 0 Td0 Tr0 O0 g/_Helvetica-Bold 8 Tf(Style object) Tx (\r) TX TO0 R0 G168.375 635 m168.375 533 lSu0 To1 0 0 1 130.125 623.125 0 TpTP-15.3379 0 Td0 Tr0 O0 g/_Helvetica 8 Tf(Pen size) Tx (\r) TX TO0 To1 0 0 1 130.125 606.125 0 TpTP-7.335 0 Td0 Tr(Cap) Tx (\r) TX TO0 To1 0 0 1 130.125 589.125 0 TpTP-7.335 0 Td0 Tr(Join) Tx (\r) TX TO0 To1 0 0 1 130.125 572.125 0 TpTP-9.335 0 Td0 Tr(Dash) Tx (\r) TX TO0 To1 0 0 1 130.125 555.125 0 TpTP-12.8926 0 Td0 Tr(Pattern) Tx (\r) TX TO0 To1 0 0 1 130.125 538.125 0 TpTP-20.2178 0 Td0 Tr(Curve error) Tx (\r) TX TO0 To1 0 0 1 168.375 521.125 0 TpTP-16.8916 0 Td0 Tr(Attributes) Tx (\r) TX TO0 To1 0 0 1 168.375 504.125 0 TpTP-22.6709 0 Td0 Tr(Owner count) Tx (\r) TX TO0 To1 0 0 1 168.375 487.125 0 TpTP-12.8887 0 Td0 Tr(Tag list) Tx (\r) TX TO0 To1 0 0 1 206.625 623.125 0 TpTP-8.0019 0 Td0 Tr(Font) Tx (\r) TX TO0 To1 0 0 1 206.625 606.125 0 TpTP-16.4482 0 Td0 Tr(Text face) Tx (\r) TX TO0 To1 0 0 1 206.625 589.125 0 TpTP-16.001 0 Td0 Tr(Text size) Tx (\r) TX TO0 To1 0 0 1 206.625 572.125 0 TpTP-20.8916 0 Td0 Tr(Justification) Tx (\r) TX TO0 To1 0 0 1 206.625 555.125 0 TpTP-26.2256 0 Td0 Tr(Font variations) Tx (\r) TX TO0 To1 0 0 1 206.625 538.125 0 TpTP-14.8877 0 Td0 Tr(Platform) Tx (\r) TX TOU462.75 445.9375 m462.75 462.9375 L386.25 462.9375 L386.25 445.9375 L462.75 445.9375 Lf462.75 411.9375 m462.75 428.9375 L386.25 428.9375 L386.25 411.9375 L462.75 411.9375 Lf1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G460.75 447.9375 m460.75 464.9375 L384.25 464.9375 L384.25 447.9375 L460.75 447.9375 Lb0 To1 0 0 1 422.5 453.0625 0 TpTP-16 0 Td0 Tr0 g(Color set) Tx (\r) TX TO1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G460.75 413.9375 m460.75 430.9375 L384.25 430.9375 L384.25 413.9375 L460.75 413.9375 Lb0 To1 0 0 1 422.5 419.0625 0 TpTP-21.5537 0 Td0 Tr0 g(Color profile) Tx (\r) TX TOu1 O378.4435 456.5041 m376.8929 454.1639 l383.25 456.4375 L376.9583 458.8863 l378.4435 456.5041 LfUu378.4435 422.5041 m376.8929 420.1639 l383.25 422.4375 L376.9583 424.8863 l378.4435 422.5041 LfU0 To1 0 0 1 325.0625 360 0 TpTP-34.4424 0 Td0 Tr0 O/_Helvetica-Bold 8 Tf(View group object) Tx (\r) TX TOu1 O86.0685 626.4334 m84.5179 628.7736 l90.875 626.5 L84.5833 624.0512 l86.0685 626.4334 LfUu86.0685 405.5666 m84.5179 403.2264 l90.875 405.5 L84.5833 407.9488 l86.0685 405.5666 LfUu280.9435 456.5103 m279.3929 454.1701 l285.75 456.4437 L279.4583 458.8925 l280.9435 456.5103 LfUu1 R0 G380.7352 244.0563 m371.9852 244.0563 L371.9852 278.0563 L380.7352 278.0563 lS363.3125 261 m372 261 lS265.8602 235.5 m274.4852 235.5 L274.4852 295.0563 L283.2352 295.0563 lS168.3915 371.5 m177.0165 371.5 L177.0165 337.5563 L185.7665 337.5563 lS380.704 422.4938 m371.954 422.4938 L371.954 456.4938 L380.704 456.4938 lS363.2813 439.4375 m371.9063 439.4375 lS70.954 473.5 m79.579 473.5 L79.579 626.4437 L88.329 626.4437 lS70.954 439.5 m79.579 439.5 L79.579 405.5563 L88.329 405.5563 lS71.0165 456.5 m283.204 456.5 lSU0 O1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R70.954 380 m70.954 550 L-5.546 550 L-5.546 380 L70.954 380 Lb-5.546 533 m70.954 533 lS-5.546 499 m70.954 499 lS-5.546 482 m70.954 482 lS-5.546 465 m70.954 465 lS-5.546 448 m70.954 448 lS-5.546 431 m70.954 431 lS-5.546 414 m70.954 414 lSu0 To1 0 0 1 33.704 537.125 0 TpTP-8.8906 0 Td0 Tr0 O0 g/_Helvetica 8 Tf(Type) Tx (\r) TX TO0 To1 0 0 1 33.704 511.875 0 TpTP-17.5557 0 Td0 Tr(Geometry) Tx (\r) TX TO0 To1 0 0 1 33.704 486.125 0 TpTP-5.1064 0 Td0 Tr(Fill) Tx (\r) TX TO0 To1 0 0 1 33.704 469.125 0 TpTP-23.334 0 Td0 Tr(\(Style object\)) Tx (\r) TX TO0 To1 0 0 1 33.704 452.125 0 TpTP-19.7783 0 Td0 Tr(\(Ink object\)) Tx (\r) TX TO0 To1 0 0 1 33.704 435.125 0 TpTP-32.6621 0 Td0 Tr(\(Transform object\)) Tx (\r) TX TO0 To1 0 0 1 33.704 418.125 0 TpTP-16.8916 0 Td0 Tr(Attributes) Tx (\r) TX TO0 To1 0 0 1 33.704 401.125 0 TpTP-22.6709 0 Td0 Tr(Owner count) Tx (\r) TX TO0 To1 0 0 1 33.704 384.125 0 TpTP-12.8887 0 Td0 Tr(Tag list) Tx (\r) TX TOU0 R0 G-5.5°¿A46 397 m70.954 397 lS0 To1 0 0 1 32.704 553.875 0 TpTP-24.8896 0 Td0 Tr0 O0 g/_Helvetica-Bold 8 Tf(Shape object) Tx (\r) TX TO1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G363.25 379.9437 m363.25 464.9437 L286.75 464.9437 L286.75 379.9437 L363.25 379.9437 Lb0 To1 0 0 1 325 453.0687 0 TpTP-26.001 0 Td0 Tr0 g/_Helvetica 8 Tf(Transfer mode) Tx (\r) TX TO0 To1 0 0 1 325 436.0687 0 TpTP-9.5537 0 Td0 Tr(Color) Tx (\r) TX TO0 R0 G286.75 447.9437 m363.25 447.9437 lS0 To1 0 0 1 325 419.0687 0 TpTP-16.8916 0 Td0 Tr0 O0 g(Attributes) Tx (\r) TX TO0 R0 G286.75 430.9437 m363.25 430.9437 lS0 To1 0 0 1 325 402.0687 0 TpTP-22.6709 0 Td0 Tr0 O0 g(Owner count) Tx (\r) TX TO0 R0 G286.75 413.9437 m363.25 413.9437 lS0 To1 0 0 1 325 385.0687 0 TpTP-12.8887 0 Td0 Tr0 O0 g(Tag list) Tx (\r) TX TO0 R0 G286.75 396.9437 m363.25 396.9437 lS0 To1 0 0 1 325 468.8187 0 TpTP-18.666 0 Td0 Tr0 O0 g/_Helvetica-Bold 8 Tf(Ink object) Tx (\r) TX TO%AI3_BeginCropsuserdict /AI3_noCropMarks known not {uu0 R0 G0.5 w-44 151 m-71 151 LS-35 142 m-35 115 LSUu-44 667 m-71 667 LS-35 676 m-35 703 LSUu487 667 m514 667 LS478 676 m478 703 LSUu487 151 m514 151 LS478 142 m478 115 LSUU} if%AI3_EndCrops%%PageTrailergsave annotatepage grestore showpage%%TrailerAdobe_IllustratorA_AI3 /terminate get execAdobe_typography_AI3 /terminate get execAdobe_customcolor /terminate get execAdobe_cshow /terminate get execAdobe_cmykcolor /terminate get execAdobe_packedarray /terminate get exec%%EOFö◊#ˇ ˇˇˇˇ#◊ 
  614. d,     Helvetica    .°dONLNdñ$›+¥@
  615. TYPOGRAPHY, Palatino
  616. °dONLNd $ñ0˘* JQuickDraw GX has a sophisticated typographic model that’s fully integrated°dONLNdV0ñ<˘* Qwith graphics. The ability to do kerning, tracking, and justification, as well as°dONLNd®<ñH* Tligatures and ornamental forms of various characters, is provided by the line layout°dONLNd˝HñTÓ* Jroutines, supported by the QuickDraw GX smart font format. The line layout°dONLNdHTñ` * Oroutines work with the typographic information contained in the TrueType GX and°dONLNdò`ñlÌ* OType 1 GX fonts to give you a ton of control over how text is placed on a page.°dONLNdÈxñѯ*JBecause QuickDraw GX typography is fully integrated with graphics, you can°dONLNd4Ññê
  617. * Orotate, skew, and change the perspective of typographic shapes the same way you°dONLNdÑêñú˙* Pcan geometric shapes. You can use the text shape to draw a line of text with one°dONLNd’úñ®* Qstyle. The glyph shape enables you to draw text in several styles and graphically°dONLNd'®ñ¥ı* Kmanipulate each glyph. The layout shape uses the information contained in a°dONLNds¥ñ¿¯* OTrueType GX or Type 1 GX font to automatically kern, justify, and track, and to°dONLNd√¿ñÃÌ* Nsupport ligatures, final forms (special forms found at the ends of words), and°dONLNdÃñÿÎ* Iornamental forms of the various glyphs contained within the layout shape.°dONLNd\‰ñ*LNote that although QuickDraw GX supports all existing Macintosh font formats°dONLNd©ñ¸
  618. * S(Type 1, bitmap, and TrueType), to take full advantage of its extensive line layout°dONLNd˝¸ñö* 9capabilities you must use TrueType GX or Type 1 GX fonts.    °dONLNd7ñ$»*PRINTING
  619. °dONLNd@$ñ0Ó* JQuickDraw GX improves printing for both users and developers. Users get an°dONLNdã0ñ<* Qimproved human interface, and developers get much more control and functionality.°dONLNd›<ñH÷* EFrom the application’s point of view, QuickDraw GX offers true device°dONLNd#HñT* Pindependence: you can send the same data to all supported devices and the output°dONLNdtTñ`k* .will be rendered appropriately on each device.°dONLNd§lñx*OQuickDraw GX introduces three new printing concepts: desktop printers, portable°dONLNdÙxñÑW* +digital documents, and printing extensions.°dONLNd!êñú‡*Users can create °dONLNd2ê‡ú*)Jdesktop printers°dONLNdBê*ú)J1 with the Chooser. These are represented as icons°dONLNdtúñ®(ƒ¥Ton the desktop and are full Finder citizens; users can drag and drop print files and°dONLNd…®ñ¥* Qdocuments to them. Users can also manage the print queue and redirect print files°dONLNd¥ñ¿Ï* Jand documents by dragging them to and from desktop printers, and can share°dONLNdf¿ñÃè* 6desktop printers with other users via PrinterShare GX.°dONLNdùÿñ‰†*A °dONLNdüÿ†‰)
  620. portable digital document °dONLNdπÿ‰ )x8(PDD) file contains all the objects required to render a°dONLNdÚ‰ñ˛( ¥Sdocument on a screen or printer, so you can open, review, and print the file on any°dONLNd    Fñ¸* Osystem running QuickDraw GX without the application or fonts used to create the°dONLNd    ñ¸ñˇ* Ndocument. When a PDD file is created, only the glyphs used in the document are°dONLNd    Âñ* Tsaved along with it; since the document can’t very well be edited, the PDD is secure°dONLNd
  621. :ñ * Sfor transporting fonts. When you print, you can save the print job as a PDD with or°dONLNd
  622. é ñ,* Swithout the fonts required. If you know that the person you’re sending the PDD file°dONLNd
  623. ‚,ñ8Ï* Mto has the fonts you used, you can choose not to save the fonts with the PDD. uBu/ (x& +
  624. 10+pd)e)v)e)l)o)p)  )Issue 15ˇˆ◊#ˇ ˇˇˇˇ#◊ 
  625. d, Palatino
  626. .°dONLNd$m+6@Printing extensions°dONLNdm$ê)U@ are small standalone pieces of code that modify the behavior of°dONLNdT$0å(L6Sprinting and give users vastly increased control, at a system rather than a program°dONLNd®0<ë* Slevel, over how a printed page looks. For example, through a printing extension the°dONLNd¸<H~* Quser can direct a printer to print “Confidential” diagonally across each page, no°dONLNdNHT~* Pmatter what program is doing the printing. The user selects a printing extension°dONLNdüT`Ç* Nfrom a list displayed in the expanded Print, By Page Setup, and Document Setup°dONLNdÓ`ls* Kdialogs (which appear when More Choices is clicked in the regular dialogs).°dONLNd;xÑã*PThe API for QuickDraw GX printing gives you easy access to information about the°dONLNdåÑêm* Npage size and orientation of a print job and enables you to keep the user from°dONLNd€êúÑ* changing these settings.°dONLNdı®¥
  627. *4QuickDraw GX supports raster, vector, and PostScript    °dONLNd)™
  628. ≥)Ú™
  629. °dONLNd*®¥Ñ)
  630.  devices. The bad news is°dONLNdE¥¿s(‹6Mthat if your system is running QuickDraw GX, you won’t be able to use any non°dONLNdí¥s¿x(‹ë–°dONLNdì¿Ãt(Ë6HQuickDraw GX printer drivers. The good news is that because QuickDraw GX°dONLNd‹Ãÿí* Uprovides system-level support for developing printer drivers, it’s a whole lot easier°dONLNd2ÿ‰x* Lto develop printer drivers for QuickDraw GX than it is for the old QuickDraw°dONLNd~ÿx‰|(ñ-°dONLNd‰s( 6Kbased printing architecture — you can plan on months of development time as°dONLNdÀ¸å* Qopposed to years. And in many cases you may find that a printing extension, which°dONLNd¸~* Ris easier yet to develop, will suffice to implement the desired functionality; for°dONLNdpå* Omore information, see the article “Developing QuickDraw GX Printing Extensions”°dONLNd¿ j* later in this issue.,     Helvetica °dONLNd’1?Ã*PROGRAMMING AMENITIES
  631. °dONLNdÎCOs*KQuickDraw GX offers you some truly useful programming goodies: libraries of°dONLNd7O[ä* Phandy high-level routines, extensive error-handling capabilities, and a powerful°dONLNdà[gÃ* &new debugging tool called GraphicsBug.    °dONLNdØxɪ*THE QUICKDRAW GX LIBRARIES
  632. °dONLNd ÉèÄ* PAs you cruise around the QuickDraw GX folder on this issue’s CD, you’ll notice a°dONLNdèõÜ* Qfolder named Libraries. Open it and you’ll find libraries of code for many common°dONLNdmõß{* Ngraphics, line layout, and printing tasks. These provide sample code that most°dONLNdºß≥à* Papplications will need in order to create a QuickDraw GX application. But unlike°dONLNd≥ø}* OMacintosh Toolbox code, this library code can be modified or extended by you to°dONLNd]øÀë* Rmeet your own particular needs. All the library code is based on core QuickDraw GX°dONLNd∞À◊1* calls.    °dONLNd∏ËÛ÷*ERROR HANDLING IN QUICKDRAW GX
  633. °dONLNd◊Ûˇf* HThe goal of QuickDraw GX’s error-handling capabilities is to never allow°dONLNd     ˇ ç* LQuickDraw GX to crash your Macintosh, and to inform you anytime QuickDraw GX°dONLNd    m ç* Pcan’t complete an operation. QuickDraw GX uses two different models for handling°dONLNd    æ#y* Qerrors: one for graphics and layout errors and another for printing errors. We’ll°dONLNd
  634. #/Ñ* Tdiscuss graphics and layout errors here. Printing errors are described later in this°dONLNd
  635. e/;ˆ* 0article, under “Basic Printing in QuickDraw GX.” u4u& (x) +
  636. 11(å6,The By Page Setup and Document Setup dialogs*
  637. 3are new in QuickDraw GX. They’re described later in*
  638. 5this article under “Basic Printing in QuickDraw GX.”•(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇH◊#ˇ ˇˇˇˇ#◊ 
  639. d, Palatino
  640. .°dONLNdñ$+¥@PThere’s both a debugging and a nondebugging version of the combined graphics and°dONLNdQ$ñ0* Olayout portions of QuickDraw GX. The debugging version provides extensive error°dONLNd†$0    (L#-°dONLNd°0ñ< (X¥Phandling capabilities to help you debug your applications under development. The°dONLNdÚ<ñH˛* Onondebugging version is lean and mean; it has fewer error-handling capabilities°dONLNdBHñT˚* Oand is faster than the debugging version. You can differentiate between the two°dONLNdíTñ` * Uversions by their sizes and version strings: the nondebugging version is smaller, and°dONLNdË`ñl* Tthe version string for the debugging version has the word “debug” in it. When you’re°dONLNd=lñx˙* Kdeveloping your QuickDraw GX application, you should be using the debugging°dONLNdâxñÑ∫* version.°dONLNdíêñú˛*NIn the debugging version, information about internal data and drawing problems°dONLNd·úñ®
  641. * Ucomes in three flavors: notices, warnings, and errors. Only a few selected errors and°dONLNd7®ñ¥o* 0warnings are issued in the nondebugging version.,     Helvetica    °dONLNdh¡ñÿ*Notices.
  642. °dONLNdp¿¿Ã˘)*FA notice informs you that the operation you’re performing isn’t really°dONLNd∑Ãñÿ(Ù¥Sneeded. Notices aren’t necessarily bad things; they’re just information to help you°dONLNd ÿñ‰
  643. * Rimprove the efficiency of your application. For example, if you’ve already colored°dONLNd^‰ñı* Qa shape and you try to color it again, you’ll receive the following notice in the°dONLNd∞ñ¸Ì* installed debugger:,
  644. Courier    °dONLNdƒ    ñ@*"GRAPHICS NOTICE: color already set°dONLNdÁ!ñ,»*    Warnings.°dONLNd!»,À)2 
  645. °dONLNdÒ À,)CA warning informs you that QuickDraw GX doesn’t allow the operation°dONLNd5,ñ8(T¥Qyou’re trying to perform. While this might not cause any problems, you also might°dONLNdá8ñDÓ* Qnot get the result you expected. For example, if you try to use a font that isn’t°dONLNdŸDñPÈ* Iavailable, QuickDraw GX will substitute the default font and give you the°dONLNd#Pñ\Ï* following warning:    °dONLNd6iñt|*.GRAPHICS WARNING: font substitution took place°dONLNdeÅñåπ*Errors.°dONLNdlÅπåº)# 
  646. °dONLNdmĺå)GAn error means that QuickDraw GX couldn’t draw your shape or complete a°dONLNdµåñò˘(¥¥Oroutine. For example, if you try to draw an empty shape or one that hasn’t been°dONLNdòñ§W* ,defined, you’ll receive the following error:    °dONLNd2±ñº"*GRAPHICS ERROR: shape is nil°dONLNdO…ñ‘#*Checking for drawing errors.
  647. °dONLNdk»#‘)ç1Once you’ve finished developing your application,°dONLNdù‘ñ‡(¸¥Ryou’ll still want to be able to check for drawing errors. The QuickDraw GX routine°dONLNd‡ñÏ* QGXGetShapeDrawError lets you do this and, in case of an error, fail in a graceful°dONLNdBÏñ¯* Nmanner. For example, this code fragment checks that drawing was successful and°dONLNdë¯ñ„* fails if it wasn’t:    °dONLNd•ñ*GXDrawShape(gthePage);°dONLNdΩ)ñ4÷*@if (drawingError = GXGetShapeDrawError(gthePage) != noDrawError)°dONLNdˇ5§@I+ !// Your error-handling code here! uBu/ (x& +
  648. 12+ã
  649. For a complete list )F of all the errors, warnings, and(ñ¥7notices provided by the graphics and layout portions of*
  650. 2QuickDraw GX, take a look at the graphics errors.h*
  651. header file.•(åvRoutine naming in QuickDraw GX )~is very(ñv7predictable and logical. All calls preceded by “GX” are*
  652. 3from the core API, while ones without “GX” are from*
  653. 7the library or application code. In addition, all calls*
  654. 8pertaining to the same object are very similar, and once*
  655. 2you grasp how to operate on one object, you pretty*
  656. )much know how to operate on all objects.•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇn◊#ˇ ˇˇˇˇ#◊ 
  657. d,     Helvetica    .°dONLNd$±+6@Ignoring notices and warnings.°dONLNd±$¥)ô , Palatino
  658. °dONLNd¥$ê)/Sometimes you might want to ignore a particular°dONLNdO$0ë(L6Tnotice or warning because you know what you’re doing. Use these routines to ignore a°dONLNd§0<h* notice or warning:,
  659. Courier    °dONLNd∑IT!*5void GXIgnoreGraphicsNotice(gxGraphicsNotice notice);°dONLNdÌU`0* 8void GXIgnoreGraphicsWarning(gxGraphicsWarning warning);
  660. °dONLNd&lxÑ*QFor example, if you wanted to ignore a notice about recoloring a shape, you would°dONLNdxxÑ]* make this call:    °dONLNdàëú*/void GXIgnoreGraphicsNotice(color_already_set);
  661. °dONLNd∏®¥ä*KWhen you call GXIgnoreGraphicsNotice or GXIgnoreGraphicsWarning, the notice°dONLNd¥¿Ä* Ror warning is added to the top of the notice stack or warning stack, respectively.°dONLNdW¿Ãç* T(It’s added to the stack even when not ignored, but the stack handling is taken care°dONLNd¨Ãÿí* Wof behind the scenes for you in that case.) So you must balance this with a call to one°dONLNdÿ‰~* Qof the following routines to ensure that you don’t overflow the notice or warning°dONLNdV‰3* stack:    °dONLNd]˝≥*void GXPopGraphicsNotice(void);°dONLNd}    ∏*  void GXPopGraphicsWarning(void);
  662. °dONLNdû ,|*NIn the nondebugging version, where notices and most warnings aren’t available,°dONLNdÌ,8è* Ncalling the GXIgnoreGraphicsXXX and GXPopGraphicsXXX routines still results in°dONLNd<8Dé* Qa trap call and dispatch even though they just return immediately. There may be a°dONLNdéDPe* Hsmall performance penalty for this, so you should remember to remove the°dONLNd◊P\‚* -unnecessary calls for a shipping application.    °dONLNditfi*'Grabbing errors, notices, and warnings.°dONLNd,ifit·)Δ 
  663. °dONLNd-h·tr) In the nondebugging version, you°dONLNdNtÄÑ(ú6Rreceive only a few selected errors and warnings. If you’ve tested your application°dONLNd°Äå* 4thoroughly, these should be the only errors you see:    °dONLNd÷ô§Y*out_of_memory°dONLNd‰•∞Í* *not_enough_memory_for_graphics_client_heap°dONLNd±º∏*  graphics_client_memory_too_small°dONLNd0Ω»Æ* could_not_create_backing_store
  664. °dONLNdO‘‡ÿ**These should be the only warnings you see:    °dONLNdz̯Ô*+<<font or character>>_substitution_occurred°dONLNd¶˘0* 8<<map, move, scale, rotate, or skew>>_shape_out_of_range°dONLNdflD* <<<map, move, scale, rotate, or skew>>_transform_out_of_range
  665. °dONLNd(ã*SYou probably don’t want your user to end up in a debugger or with a system bomb, so°dONLNdp(4Å* Oyou should catch errors by calling the GXGetGraphicsError routine; you can then°dONLNd¿4@É* Qhandle the error appropriately within your application or present it to the user. u4u& (x) +
  666. 13(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ ƒ◊#ˇ ˇˇˇˇ#◊ 
  667. d,
  668. Courier    .°dONLNdñ$€+¥@AgxGraphicsError GXGetGraphicsError(gxGraphicsError *stickyError);, Palatino
  669. °dONLNdC0ñ<*QYou can also grab notices (in the debugging version only) and warnings with these°dONLNdï<ñHØ* calls:    °dONLNdúUñ`Ô*EgxGraphicsNotice GXGetGraphicsNotice(gxGraphicsNotice *stickyNotice);°dONLNd‚añl* IgxGraphicsWarning GXGetGraphicsWarning(gxGraphicsWarning *stickyWarning);,     Helvetica°dONLNd,}ñàß**GRAPHICSBUG: A POWERFUL NEW DEBUGGING TOOL
  670. °dONLNdWàñî* NThe only way to create and modify shapes in QuickDraw GX is through the public°dONLNd¶îñ†* VAPI; you can’t operate on any data directly. This is a very good thing because it lets°dONLNd˝†ñ¨ * QApple expand the system in the future with minimal compatibility risk. But if you°dONLNdO¨ñ∏¸* Ncan’t see the data you’re working with, won’t debugging be a nightmare? Here’s°dONLNdû∏ñƒ* Qwhere GraphicsBug comes to the rescue. GraphicsBug is an application that enables°dONLNdƒñ–* Qyou to inspect the contents of any QuickDraw GX graphics or layout object to make°dONLNdB–ñ‹* Tsure it contains the correct information. The command set is very similar to that of°dONLNdó‹ñË    * QMacsBug; just type “?” to get a list of the commands available. GraphicsBug works°dONLNdÈËñÙ* Qonly in the debugging version of QuickDraw GX 1.0b1 but in both versions of later°dONLNd;Ùñ* QuickDraw GX releases. °dONLNdRñW*INITIALIZING QUICKDRAW GX
  671. °dONLNdl#ñ/˙*JNow that we’ve checked out the horsepower under the hood and the amenities°dONLNd∑/ñ;ˇ* Mbuilt in for programmers, we’re ready to get QuickDraw GX up and drawing. The°dONLNd;ñG* Rfirst step is to initialize QuickDraw GX, but before you do, you need to make sure°dONLNdXGñS* Sthe user has installed it. Use the Gestalt selector 'grfx' to determine whether the°dONLNd¨Sñ_* Mgraphics and typography portions of QuickDraw GX have been installed, and the°dONLNd˙_ñk¯* KGestalt selector 'pmgr' to determine whether QuickDraw GX printing has been°dONLNdFkñw√*
  672. installed.°dONLNdQÉñè
  673. *RIn the case of our QuickDraw GX shell, the following routine finds out which parts°dONLNd§èñõE* $of QuickDraw GX have been installed:    °dONLNd…®ñ≥,*Boolean QuickDrawGXAvailable()°dONLNdË¥ñøõ* {°dONLNdο§À∏+ long°dONLNd¿¡À*)theFeatureInQuestion;°dONLNdÿ§„®(ˇ¬4if (Gestalt('grfx', &theFeatureInQuestion) == noErr)°dONLNd=‰§Ô©* {°dONLNdA≥˚∑+ 4if (Gestalt('pmgr', &theFeatureInQuestion) == noErr)°dONLNdy¸¡W+ gQDGXPrintingInstalled = true;°dONLNdö≥˘(/—return (true);°dONLNd™§©(;¬}°dONLNd≠ §+Ô* return (false);°dONLNdΩ,ñ7õ(S¥} uBu/ (x& +
  674. 14+pd)e)v)e)l)o)p)  )Issue 15ˇê◊#ˇ ˇˇˇˇ#◊ 
  675. d, Palatino
  676. .°dONLNd$y+6@IThe QuickDraw GX shell uses the global variable gQDGXPrintingInstalled to°dONLNdJ$0í* Sdetermine if QuickDraw GX printing has been installed. If it has, the printing menu°dONLNdû0<f* Kitems in the File menu are enabled. Otherwise, an alert tells the user that°dONLNdÍ<Hâ* NQuickDraw GX printing hasn’t been installed, and the application works without°dONLNd9HT@*     printing.°dONLNdC`lë*ROnce you know that the user has QuickDraw GX, you’re ready to initialize it. After°dONLNdñlxÉ* Qthe generic Macintosh Toolbox initialization, you create a new graphics client to°dONLNdËxÑÄ* Oallocate memory. Then you can set up error handling and validation as an aid to°dONLNd8Ñêå* Rtracking down problems, although if you’re eager to get on with drawing, you don’t°dONLNdãêúÖ* Rhave to do this right now. Finally, you can initialize the common color library to°dONLNdfiú®ê* Pget quick and easy color. In the QuickDraw GX shell, the routine QuickDrawGXInit°dONLNd/®¥°*  does all of this initialization.,     Helvetica    °dONLNdP≈–“*CREATING A NEW GRAPHICS CLIENT
  677. °dONLNdo–‹h* KA graphics client is a reference to the block of MultiFinder memory used by°dONLNdª‹ËÌ* ,QuickDraw GX graphics and layout called the °dONLNdÁ‹ÌËL)’QuickDraw GX heap°dONLNd¯‹LËÉ)_ . When your°dONLNdËÙÅ(6Napplication creates a new graphics client, QuickDraw GX usually allocates this°dONLNdSÙ* Kblock of memory. The QuickDraw GX heap contains all the graphics and layout°dONLNdü z* Mobjects your application creates while running QuickDraw GX, as well as a few°dONLNdÌ }* Jobjects QuickDraw GX uses to manage the heap. (See “Managing Memory in the°dONLNd8$œ* %QuickDraw GX Heap” for more details.)°dONLNd^0<p*LThe simplest way to create a graphics client is to call EnterGraphics, which°dONLNd´<Hê* Sdefines a client for you based on some fundamental assumptions. If you want to have°dONLNdˇHTt* Kmore control over the graphics client you create, call GXNewGraphicsClient:,
  678. Courier    °dONLNdKalÖ*IgGraphicsClient = GXNewGraphicsClient(nil, gGraphicsHeapSize * 1024, 0L);
  679. °dONLNdïxÑv*LThe variable gGraphicsClient holds the new graphics client. You can use this°dONLNd‚Ñêã* Tvariable anytime you need to access this graphics client. In our shell, we only need°dONLNd7êúv* Lthis variable when the application shuts down. The first parameter tells the°dONLNdÑú®Ç* IMemory Manager where we want to create the QuickDraw GX heap. A nil value°dONLNdŒ®¥ä* Mtells the Memory Manager to create the heap within MultiFinder memory. That’s°dONLNd¥¿ê* Uusually where you want it, but you can also specify a pointer to a block of memory in°dONLNdr¿Ãä* Oyour application heap or even the system heap. The second parameter defines the°dONLNd¬Ãÿí* Ssize of the heap in bytes. Our shell uses a 115K heap (gGraphicsHeapSize = 115); if°dONLNd    ÿ‰r* Lyou pass 0, you get the default heap size of 600K. The last parameter, named°dONLNd    c‰z* NseparateStack, tells QuickDraw GX to allocate a stack for the graphics client,°dONLNd    ≤¸â* Vwhich is necessary if that client is going to run at interrupt time. To get a separate°dONLNd
  680.     ¸** ?stack, just pass any nonzero value that defines the stack size.    °dONLNd
  681. I$*(SETTING UP ERROR HANDLING AND VALIDATION
  682. °dONLNd
  683. r$0w* OAfter setting up the graphics client, you should enable the error, warning, and°dONLNd
  684. ¬0<é* Tnotice capabilities if you want to make debugging easier for yourself down the line.°dONLNd <H1* In our u4u& (x) +
  685. 15(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇj◊#ˇ ˇˇˇˇ#◊ 
  686. d,     Helvetica .°dONLNd$,2|+JM(MANAGING MEMORY IN THE QUICKDRAW GX HEAP"6<# 6=6."6/#"7<#"7/#    °dONLNd+=,H*4The graphics and layout portions of QuickDraw GX use°dONLNd`H,S* 5their own heap format and their own relocating Memory°dONLNdñS,^* 5Manager to improve efficiency. Why is this necessary?°dONLNdÃ^,i* 9The GX system is object based, so it needs the ability to°dONLNdi,t * 6quickly move graphics and layout objects from the heap°dONLNd=t,* 7onto disk when they aren’t needed and additional memory°dONLNdu,ä* 7is required, and to move these objects back into memory°dONLNd≠ä,ï * 9when they’re needed. This isn’t possible with the current°dONLNdÁï,†t* Memory Manager.°dONLNd¯¨,∑Ú*4Your application has quite a bit of control over the°dONLNd-∑,¬Ò* 0objects it creates in the QuickDraw GX heap. The°dONLNd^¬,Õ* 6QuickDraw GX API provides calls to unload objects from°dONLNdïÕ,ÿ˘* 3the heap, and shape attributes that indicate when a°dONLNd…ÿ,„* 4shape should be paged out of the heap to the backing°dONLNd˛„,Ó* 9store on disk. If you don’t unload the objects or set any°dONLNd8Ó,˘ * 6of the shape attributes yourself, QuickDraw GX unloads°dONLNdo˘,â* the oldest objects first.°dONLNdâ,ˇ*3You can use a GXUnload call to tell QuickDraw GX to°dONLNdΩ,&* 9page a graphics or layout object — specifically, a shape,°dONLNd˜&,1* 9style, transform, ink, color profile, color set, or tag —°dONLNd11,<* 8from the heap to the backing store on disk when the next°dONLNdj<,GÛ* .memory management call occurs. For example, to°dONLNdôG,R* 6unload a particular shape from the heap, you would use°dONLNd–R,]q* the following call:,
  687. Courier°dONLNdÂj,u¬*GXUnloadShape(gxShape target);°dONLNdÅ,å*8QuickDraw GX maintains a reference to the objects, so it°dONLNd=å,óÛ* 2can read them from disk back into the heap if your°dONLNdpó,¢ * :application needs them. It does this automatically, but if°dONLNd≠=&H    (dD8you want to improve the performance of your application,°dONLNdÊH&S    * :you can explicitly load graphics and layout objects with a°dONLNd!S&^* 9GXLoad call. For example, to load a particular shape into°dONLNd[^&iŒ* +the heap, you would use the following call:°dONLNdàv&Å≤*GXLoadShape(gxShape target);°dONLNd•ç&òÌ*2There are two shape attributes that you can set to°dONLNdÿò&£* 5indicate when to page a shape out to disk when memory°dONLNd£&ÆP*
  688. is needed:°dONLNd¥'ø*+•°dONLNd¥3ø) 5When gxDiskShape is set, this shape will be the first°dONLNdRø3 Ï* ,shape to be paged out of memory to disk when°dONLNd 3’* memory is needed.°dONLNdë€'Ê*(E•°dONLNdì€3Ê) 1When gxMemoryShape is set, this shape will be the°dONLNd≈Ê3Ò¢* last to be paged out to disk.°dONLNd‰˝&Û($D5It’s generally a good idea to dispose of an object as°dONLNd&˛* 8soon as you’ve finished with it. If you leave a bunch of°dONLNdS&* 5unused objects lying around in the heap, QuickDraw GX°dONLNdâ&)Ï* 1will maintain them and page them out to disk when°dONLNdª)&4* 6memory becomes tight. This wasted operation will cause°dONLNdÚ4&?œ* +your application to take a performance hit.°dONLNd    K&V˚*7If you have a collection of shapes, say a picture, that°dONLNd    WV&a‚* /you won’t need for a while, you should consider°dONLNd    áa&l* 3flattening them to disk and then disposing of them.°dONLNd    ªl&wÊ* 0When you flatten a shape to disk, each object is°dONLNd    Ïw&Lj* 4compressed and sent to the file as a stream of data.°dONLNd
  689. !Ç&ç* 7When you dispose of the objects you just flattened, you°dONLNd
  690. Yç&òé* free up some heap space. [<Ã<"Õ<# Õ=Õ5"Õ6 Õ7Õ. [/Ã/"Õ/#, Palatino
  691. °dONLNd
  692. u»ñ‘†(¥8QuickDraw GX shell we enable all three with the routines°dONLNd
  693. Æ‘ñ‡Δ* @SetGraphicsLibraryErrors (which enables errors and warnings) and°dONLNd
  694. Ô‡ñÏÖ* 2SetGraphicsLibraryNotices (which enables notices).°dONLNd "¯ñ*LThe debugging version of QuickDraw GX graphics and layout provides extensive°dONLNd oñ* Qvalidation facilities that let you determine whether you’re passing valid data to°dONLNd ¡ñÎ* Fthe QuickDraw GX API and whether anything’s gone awry internally. (See°dONLNd ñ(* N“Tracking Down a Memory Trashing Problem” for details on how to use validation°dONLNd W(ñ4ƒ* to find out uBu/ (x& +
  695. 16+pd)e)v)e)l)o)p)  )Issue 15ˇ˙◊#ˇ ˇˇˇˇ#◊ 
  696. d, Palatino
  697. .°dONLNd$Ä+6@Lhow damage is being caused in the QuickDraw GX heap.) In general, you should°dONLNdM$0è* Malways run with gxPublicValidation + gxTypeValidation while you’re developing°dONLNdõ0<t* La QuickDraw GX application. To set this level of validation, make this call:,
  698. Courier    °dONLNdËIT+*7GXSetValidation(gxPublicValidation + gxTypeValidation);
  699. °dONLNd!`lÜ*RThis setting ensures that for all calls, QuickDraw GX checks the routines on entry°dONLNdtlxâ* Oand makes sure that the types are correct. For example, if you call GXDrawShape°dONLNdƒxÑw* Jwith this validation setting, QuickDraw GX makes sure that the shape being°dONLNdÑêë* Xpassed in is a valid shape and that it’s an object of the correct type. This will result°dONLNdhêúp* Min a slight decrease in performance but will help you catch bad data earlier.°dONLNd∂®¥à*NYour application can validate various QuickDraw GX graphics and layout objects°dONLNd¥¿Ö* R— shape, style, transform, ink, view port, view device, view group, color profile,°dONLNdX¿Ã{* Ocolor set, tag, or graphics client, or any combination — with a GXValidate call°dONLNd®Ãÿã* Sbefore they’re passed to a routine. For example, if you wanted to validate the inks°dONLNd¸ÿ‰Ú* /in the heap, you would make the following call:    °dONLNd-Ò¸Å*GXValidateInk(gxInk);
  700. °dONLNdCå*VIf you’re interested in using only these validation calls, set the validation level to°dONLNdö u* gxPublicValidation.,     Helvetica °dONLNdÆD$Rr+ 1'TRACKING DOWN A MEMORY TRASHING PROBLEM"V5# V6V'"V(#"W5#"W(#    °dONLNdÿ]%h    +8Validation is a good way to track down a memory trashing°dONLNdh%s˚* 3problem. If the QuickDraw GX heap gets trashed, you°dONLNdEs%~Ò* 6need to know if it’s your application that’s doing the°dONLNd|~%â* 7damage or if it’s QuickDraw GX. These validation levels°dONLNd¥â%îå* can help you find this out:°dONLNd—†%´•*gxNoMemoryManagerValidation°dONLNd̆≥´ÿ)é= 0x0000°dONLNdˆ´%∂y(“CgxApBlockValidation°dONLNd
  701. ´≥∂ÿ)é= 0x0100°dONLNd∂%¡Ä(›CgxFontBlockValidation°dONLNd)∂≥¡ÿ)é= 0x0200°dONLNd2¡%Ãw(ËCgxApHeapValidation°dONLNdE¡≥Ãÿ)é= 0x0400°dONLNdNÃ%◊~(ÛCgxFontHeapValidation°dONLNdcÃ≥◊ÿ)é= 0x0800°dONLNdl◊%‚ë(˛CgxCheckApHeapValidation°dONLNdÑ◊≥‚ÿ)é= 0x1000°dONLNdç‚%Ìò(    CgxCheckFontHeapValidation°dONLNdß‚≥Ìÿ)é= 0x2000°dONLNd∞˘%( C8To see if the problem is caused by your application, add°dONLNdÈ%ı* 1gxApHeapValidation or gxFontHeapValidation to the°dONLNd]h(Ñ4:types of validation you set. The one you choose depends on°dONLNdXhs* =whether you believe the problem lies in a general API call or°dONLNdñs~* :within the font heap (the heap separate from the QuickDraw°dONLNd—~â* <GX heap where all the font information is cached). This type°dONLNdâî* :of validation checks the public API calls when they make a°dONLNdIîüZ* memory request.°dONLNdZ´∂˙*:If your application doesn’t trash memory after adding this°dONLNdï∂¡* ;validation, it means that the problem is probably caused by°dONLNd—¡Ã˛* ;an internal call within QuickDraw GX. In that case, add the°dONLNd    Ã◊ * +validation level gxCheckApHeapValidation or°dONLNd    9◊‚Ò* 5gxCheckFontHeapValidation. This additional validation°dONLNd    o‚Ì˛* <checks the memory allocation for the internal core calls. If°dONLNd    ¨Ì¯È* 9you die at this point, you know that the internal call is°dONLNd    Ê¯j* causing the problem. {575"85# 868."8/ 808' {(7("8(# u4u& +ıY +
  702. 17(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ™◊#ˇ ˇˇˇˇ#◊ 
  703. d,     Helvetica    .°dONLNdñ$s+¥@#SETTING UP THE COMMON COLOR LIBRARY, Palatino
  704. °dONLNd$$ñ0* PThe common color library provided by QuickDraw GX gives you a quick way to color°dONLNdu0ñ<* Qthe shapes you create. This library contains 103 common colors, including maroon,°dONLNd«<ñH¸* Qteal, fluorescent blue, apple green, Mars orange, and Venetian red. To initialize°dONLNdHñT* this library, make this call:,
  705. Courier    °dONLNd7añlı*InitCommonColors();
  706. °dONLNdKxñÑ*QWith the color library set up, you can call SetShapeCommonColor to color a shape.°dONLNdùÑñê    * MWe’ll do this later with the shapes we draw in the QuickDraw GX shell window. °dONLNdϰñØû*USING WINDOWS WITH QUICKDRAW GX
  707. °dONLNd ≥ñø
  708. *PNow that you’ve initialized QuickDraw GX, you need to set it up to work within a°dONLNd]øñÀ
  709. * Swindow. The first step is to create a view port and attach it to a window. Then you°dONLNd±Àñ◊* Uneed to provide routines to zoom and resize the view port and to scroll its contents.°dONLNd„ñÔˇ*LRecall that QuickDraw GX draws all shapes in a view port, which contains the°dONLNdTÔñ˚Î* Lmapping used to convert from the view port’s local space to the global space°dONLNd°˚ñ* R(described by a view group). The view group determines whether the contents of the°dONLNdÙñ    * Sview port are drawn on the screen in a window or to an off-screen area. A view port°dONLNdHñ* Ralso contains its clip shape, describing the area in which drawing can take place.    °dONLNdú0ñ;b*!ATTACHING A VIEW PORT TO A WINDOW
  710. °dONLNdæ;ñG * PBy attaching a view port to a window, you guarantee that all the shapes you draw°dONLNdGñS
  711. * Tto the view port will be drawn in the correct location even after the user moves the°dONLNddSñ_≥* =window. You attach a view port to your window with this call:    °dONLNd£lñw»*
  712. gxViewPort°dONLNdÆl–w9):windowParentViewPort;°dONLNdƒÑñè§(´¥6windowParentViewPort = GXNewWindowViewPort(theWindow);
  713. °dONLNd˚õñßÚ*LIf all goes well, windowParentViewPort contains a reference to the view port°dONLNdHßñ≥
  714. * Qattached to the window (the parent view port). You can’t change the clip shape or°dONLNdö≥ñøÔ* Hmapping of this particular view port, because QuickDraw GX automatically°dONLNd„øñÀ* Smaintains all the characteristics of the parent view port. This is a problem if you°dONLNd7Àñ◊* Rdon’t want your scroll bars to be overwritten. However, you can attach a view port°dONLNdä◊ñ„˛* Qto the parent view port (see Figure 3) and then adjust this newest view port (the°dONLNd‹„ñÔ‰* Lchild view port) to reflect changes due to scrolling or resizing the window.    °dONLNd*¸ñL*$Defining the new view port’s bounds.
  715. °dONLNdN˚L    )∂) Before we create a new view port we need°dONLNdxñ˝(/¥Oto determine its bounds. We can find the bounds of the window by converting the°dONLNd»ñ˝* Jwindow’s QuickDraw portRect into a fixed-point QuickDraw GX rectangle. The°dONLNd    ñ+3* $following utility routine does this. uBu/ (x& +
  716. 18+ã
  717. !If you’re looking for a shortcut,)s you can skip the(ñ¥1InitCommonColors call, because your first call to*
  718. 1SetShapeCommonColor will initialize the library.•(åvThe number of view ports )athat can be attached to(ñv2another view port is limited only by the amount of*
  719. -memory you make available in the QuickDraw GX*
  720. heap.•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇπ`◊#ˇ ˇˇˇˇ#◊ 
  721. 76<G"76°d
  722. ONLNfH"<¢°d
  723. ONLNf+®†Ç†é
  724. 46576ò.@l@l76w¢”””
  725. ı?ˇ¯Ú
  726. ı?ˇ¯Ú
  727. ı?ˇ¯Ú
  728. ı?ˇ¯Ú
  729. ı?ˇ¯Ú
  730. ı?ˇ¯Ú
  731. ı?ˇ¯Ú
  732. ı?ˇ¯Ú
  733. ı?ˇ¯Ú
  734. ı?ˇ¯Ú
  735. ı?ˇ¯Ú
  736. ı?ˇ¯Ú
  737. ı?ˇ¯Ú
  738. ı?ˇ¯Ú
  739. ı?ˇ¯Ú
  740. ı?ˇ¯Ú
  741. ı?ˇ¯Ú
  742. ı?ˇ¯Ú
  743. ı?ˇ¯Ú
  744. ı?ˇ¯Ú
  745. ı?ˇ¯Ú
  746. ı?ˇ¯Ú
  747. ı?ˇ¯Ú
  748. ı?ˇ¯Ú
  749. ı?ˇ¯Ú
  750. ¯Ìˇ¯Ú
  751. ¯Ìˇ¯Ú
  752. ¯Ìˇ¯Ú
  753. ¯Ìˇ¯Ú
  754. ¯Ìˇ¯Ú
  755. ¯Ìˇ¯Ú
  756. ¯Ìˇ¯Ú
  757. ¯Ìˇ¯Ú
  758. ¯Ìˇ¯Ú
  759. ¯Ìˇ¯Ú
  760. ¯Ìˇ¯Ú
  761. ¯Ìˇ¯Ú
  762. ¯Ìˇ¯Ú
  763. ¯Ìˇ¯Ú
  764. ¯Ìˇ¯Ú
  765. ¯Ìˇ¯Ú
  766. ¯Ìˇ¯Ú
  767. ¯Ìˇ¯Ú
  768. ¯Ìˇ¯Ú
  769. ¯Ìˇ¯Ú
  770. ¯Ìˇ¯Ú
  771. ¯Ìˇ¯Ú
  772. ¯Ìˇ¯Ú
  773. ¯Ìˇ¯Ú
  774. ˚͡¯Ú
  775. ˚͡¯Ú
  776. ˚͡¯Ú
  777. ˚͡¯Ú
  778. ˚͡¯Ú
  779. ˚͡¯Ú
  780. ˚͡¯Ú
  781. ˚͡¯Ú
  782. ˚͡¯Ú
  783. ˚͡¯Ú
  784. ˚͡¯Ú
  785. ˚͡¯Úò.@Äl@Älw6∑¢
  786. ˚͡¯Ú
  787. ˚͡¯Ú
  788. ˚͡¯Ú
  789. ˚͡¯Ú
  790. ˚͡¯Ú
  791. ˚͡¯Ú
  792. ˚͡¯Ú
  793. ˚͡¯Ú
  794. ˚͡¯Ú
  795. ˚͡¯Ú
  796. ˚͡¯Ú
  797. ˚͡¯Ú
  798. ˚͡¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯¯¿˛Êˇ¯¯”` ˛Êˇ¯¯“ê@˛Êˇ¯¯Ù“ ˛Êˇ¯¯“Å ˛Êˇ¯¯Ú`¿ ˛Êˇ¯ˆÄ˛ ˛Êˇ¯˜˝˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú˛Êˇ¯Ú
  799. ÔˇÔˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Úˇ˝˛ˇ¿˙˛ˇ˜Ùˇ¯Ú˛˛ˇ¿˛¿ ˛ˇÙWıˇ¯ÚDz˝∞“fi=Ì∞˛P?ˆˇ¯Ú˛˛ˇ¡•∞“€m-∞˛ˇÙWÙˇ¿Û˛˛ˇ¡•∞“€m-∞˛ˇ˜◊Ùˇ¿ÛDz•∞“€m-∞˛?ıˇ¿Û˛˝˛ˇ¡•˛€}Ô‡˛ˇ˜˜Ùˇ‡Û˛˛ˇ¿0¸˛ˇÙÙˇ‡Ûĸ˜?ıˇ‡Û Ä?ıˇ‡Û‚ˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ‡Û Ä?ıˇ¿Ûò.Ä¿lÄ¿l∑6˜¢ Ä?ıˇ¿Û Ä?ıˇÄÛ
  800. Ä?ıˇÚ
  801. Ä?ıˇÚ Ä?ˆˇ˛Ú Ä?ˆˇ¸Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?ˆˇ¯Ú Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?˘ˇ¯Ô Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏò.¿ÿl¿ÿl˜6¢ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?¸ˇÏ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈòÅl@lHHˆtÄ&®Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  802. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@l76w¢'ÅÅïÅÅïÅÅïüŎӎäôüˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇäôüˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇäôüˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇäôüˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇäôüˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇäôüˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇäòü0ˇ+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ^ˇ*ˇ*ˇ+*ˇ+*+*ˇ+*+*+*+*+*+*+ˇ+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$ˇ*ˇ˛ˇ*ˇˇ*$˛ˇˇ$ˇ*$ˇ*$˛ˇ*$˛+ˇ$˛+*ˇ˛ˇ*$ˇˇ$˛ˇ*ˇ˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇäôüˇ+*++*++*++*++*++*++*++*++*++*++*++*+ˇ+*++ˇ+ˇ+ˇ+ˇ+ˇ+ˇ*+ˇ*ˇˇ+ˇ+ˇ*ˇˇ*ˇ+ˇ+ˇ*ˇ+ˇˇ+*ˇ+*++*++*++*++*++*++*++*++*++*++*++ˇäóüIˇ*+*+*+*+*+*+*+*+*+*+*+*ˇ*+*ˇˇ*ˇˇ*ˇ+ˇ+ˇˇˇ*˝ˇDˇ+ˇˇ+*ˇ+ˇˇ+*ˇˇ+*ˇ+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*ˇˇ*ˇˇ*ˇˇ*$˛+*$˛+ˇˇˇ*$+ˇ$˛+ˇ$ˇ*$˛+ˇ$ˇˇ$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇäòü0ˇ++*++*++*++*++*++*++*++*++*++*++*++*˛ˇ
  803. *+ˇ+ˇ+ˇ+ˇ+˛ˇ+*+ˇ+ˇ+ˇˇ++ˇ+ˇ+*+˛ˇ9++ˇˇˇ*+ˇ*++*++*++*++*++*++*++*++*++*++*++*+ˇäôüˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇäôüˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇäôüˇ*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇäôüˇ++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇäôüˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*ˇäôüˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇäôüˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇä!∏ÅˇÌˇ+*+*+*+*+*+*ˇä≤∏ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä≤∏ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*ˇ*+*+*+*+*+*ˇä≤∏ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä≤∏ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++ˇ++*++*++*++*++*++ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*ˇ+*+*+*+*+*+*ˇä≤∏ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä≤∏ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*ˇ*+*+*+*+*+*ˇä±∏0ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇw+ˇ$+*ˇ˛+*$ˇ*$+*$ˇ*$+*$+*$+*$+*$+*$+*$˛+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä±∏5ˇ+*++*++*++*++*++*++*++*++*++*++*++*ˇ+*ˇ˛ˇ+ˇˇ+˛ˇ+*+ˇ+*+ˇ+*ˇˇ+*ˇˇ*ˇ+˛ˇQ+*ˇˇ+*ˇˇ+ˇˇ+*++*++*++*++*++*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+ˇˇ+*ˇˇ+ˇˇ*+ˇˇˇ*ˇ+ˇˇ+ˇˇ+*ˇ+ˇˇ+ˇˇ+*ˇ+*+*+*+*+*+*+*++*+*+*+*+*ˇ+*+*+*+*+*+*ˇä±∏Jˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$˛+ˇ$ˇˇ$˛+*ˇ+*$˛+ˇˇ˛ˇ]˛+ˇ$˛+ˇ$ˇ*$˛ˇ*$˛+ˇ$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä≤∏ˇ*++*++*++*++*++*++*++*++*++*++*++*+ˇ*+ˇ*ˇˇ*+ˇˇ*ˇ+ˇ++*ˇˇˇ+ˇ+*+ˇ*ˇˇ*+ˇ+*ˇˇ+*ˇˇ*+ˇ*++*++*++*++*++*++*+++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä±∏0ˇ+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ
  804. *ˇ+ˇˇˇ˛ˇ+*ˇ*ˇ+ˇˇ+*ˇˇ*˛ˇQ+ˇˇ+ˇ+ˇ+*+*+*+*+*+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇä≤∏ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä≤∏ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++ˇ++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++ˇ++*++*++*++*++*++ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*ˇ+*+*+*+*+*+*ˇä≤∏ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä≤∏ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä≤∏ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*ˇ*+*+*+*+*+*ˇä≤∏ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$++*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä≤∏ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+++*++*++*++*++ˇ++*++*++*++*++*++ˇä:–Ŏӎ0+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇä –ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+C*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä –ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+C+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+C*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇä –ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$C+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä –ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*C++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*C+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇä –ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+C*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä –ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+C+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+C*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇä –0ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$˛ˇ+ˇ$+ˇ$˛+*$ˇ*$+*$˛+*$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä…–5ˇ+*++*++*++*++*++*++*++*++*++*++*++*ˇ+*ˇ˛ˇˇ*ˇ+˛ˇ+*ˇ+*ˇ+ˇˇ+ˇ+ˇ+ˇ+˛ˇj+*ˇˇ+ˇˇˇˇ++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇäòÅl@ÄlHHˆt|&©Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  805. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Älw6∑¢' –ˇ+*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+ˇˇ+ˇˇ+ˇˇ*ˇ*ˇˇ+ˇˇ*ˇˇ*ˇ+ˇˇ*ˇ+ˇˇ+*ˇ+*+*+*+*+*+*+*C+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇä…–Jˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$˛+ˇ$˛+ˇ$˛+*ˇ+*ˇˇˇ$˛˛ˇuˇ*ˇˇ*$˛+*ˇˇ*$˛ˇ*$ˇ*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä –ˇ*++*++*++*++*++*++*++*++*++*++*++*+ˇ*+ˇ*ˇˇ*ˇˇ*ˇ+ˇ++ˇ+ˇˇ*ˇ+*+ˇ+ˇ+ˇ+*ˇ+ˇ+ˇ+*ˇˇ+*+ˇ+*++*++*++*++*++*++*+C+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä…–0ˇ+*+*+*+*+*+*+*+*+*+*+*+*˛ˇ
  806. *ˇ+ˇˇ+ˇ˛ˇ+*ˇ+ˇˇˇ+ˇˇ+*˛ˇj+ˇˇˇ*ˇ*+*+*+*+*+*+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇä –ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$C+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä –ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+ˇ*++*++*++*++*++*++*++*++*++*++*C++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*C+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇä –ˇ$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+C*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇä –ˇ*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*+C+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+C*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇä –ˇ+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$+*$C+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇä –ˇ+*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*++*C++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇä –ˇ+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*C+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇäRÈÅˇÌˇH+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇäUÈˇÅÔIˇ+*++*++*++*++*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇäUÈˇÅÔIˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇäUÈˇÅÔIˇ$+*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇäUÈˇÅÔIˇ*++*++*++*++*++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇäUÈˇÅÔIˇ+*+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇäUÈˇÅÔIˇ+*$+*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇäRÈˇÅÔˇ+*++*++*++*++*++*˚ˇ++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇäUÈˇÅÔˇ+*+*+*+*+*+*ˇˇ˛,ˇ*+*+*+*+*ˇ*+*+*+*+*+*ˇäUÈˇÅÔˇ$+*$+*$+*$+*$+*$+ˇˇ˛,ˇ+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇäcÈˇ”˛ˇÔˇ˚ˇÁˇ’ˇ*++*++*++*++*++*+˛ˇ.ˇˇ+*++*++*++*++ˇ++*++*++*++*++*++ˇäåÈˇ”ˇˇˇˇˇˇˇˇ˛ˇˇˇˇ˛ˇˇˇ˛ˇˇˇ˛ˇˇˇ˝ˇ’ˇ+*+*+*+*+*+ˇˇ˛+ˇ+*+*+*+*+*ˇ+*+*+*+*+*+*ˇäéÈˇ”˛ˇˇˇ˛ˇˇ˛ˇˇ˛ˇˇ˛ˇˇ˛ˇ˛ˇˇˇˇ˛ˇ’ˇ+*$+*$+*$+*$+*$+*$ˇˇ˛+ˇ$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇäîÈˇ”˛ˇˇˇˇˇ˝ˇˇˇˇ˛ˇˇˇ˝ˇˇˇˇˇˇˇˇˇˇ’ˇ+*++*++*++*++*++*ˇˇ˛+ˇ*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇØ¸ˇÌˇˇ˜•Èˇ”ˇ˛ˇˇˇˇ˝ˇˇˇ˛ˇˇˇˇ¸ˇˇˇˇˇˇˇˇˇ’ˇ+*+*+*+*+*+*ˇˇ˛+ˇ+*+*+*+*ˇ*+*+*+*+*+*ˇØˇ˛ˇ˝ˇˇˇˇˇˇ˙ˇ¯¶Èˇ”ˇ˝ˇ˛ˇˇ˛    ˇˇˇ˛ˇ˝˛ˇˇˇ˝ˇˇ˛˛ˇ    ˇˇˇˇ’ˇ$+*$+*$+*$+*$+*$+˛ˇ.ˇˇ+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇØˇ˛ˇ˛ˇ˛ˇˇˇˇ¸˛˜nÈˇ®ˇ…ˇ*++*++*++*++*++*+ˇˇ˛,ˇˇ+*++*++*++*++ˇ++*++*++*++*++*++ˇØ¸ˇ ˇˇˇˇˇ˝ˇ˚ˇ¯pÈˇ®ˇ… ˇ+*+*+*¸ˇ+*+ˇ˛˛ˇ*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇØˇ˛ˇˇˇˇˇˇˇ˚ˇˇ¯qÈˇÅÔ
  807. ˇ+*$+*$+*˛ˇ ˇˇ*$+*ˇˇ˛ˇ,ˇ$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇØ˛˛˛ˇ˛˛ˇ˛ˇˇˇ¸ˇˇ˜XÈˇÅÔ ˇ+*++*+ˇˇ˛˛ˇ+*+˛ˇ˛ˇ-ˇ*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇ¶ˇÊXÈˇÅÔ ˇ+*+*ˇˇ˛ˇˇ*˛ˇ˛ˇ˝+ˇ+*+*+*+*ˇ*+*+*+*+*+*ˇ®ˇˇÂJÈˇÅÔˇ$+*$+ˇˇˇˇ˛˙ˇ˚ˇ+*$+*$+*$+*$+*¸ˇ+*$+*$+*$+*$+*ˇäKÈˇÅÔ ˇ*++*+ˇˇˇˇ˝˝ˇ¯ˇ+*++*++*++*++ˇ˛ˇ++*++*++*++*++ˇäJÈˇÅÔ ˇ+*ˇˇˇˇ¸ˇı+ˇ+*+*+*+*+*ˇˇˇˇ+*+*+*+*+*ˇäEÈˇÅÔ
  808. ˇ+*$ˇˇˇˇÓˇ$+*$+*$+*$+*$ˇˇ˛ˇ$+*$+*$+*$+*$ˇäCÅ◊Ó◊È    ˇ+*ˇˇˇˇÓˇˇ*++*++*++*++*+ˇˇ˛ˇˇ++*++*++*++*+ˇäG◊Å··◊◊͡+*ˇˇˇˇÓˇˇ*+*+*+*+*˛ˇ˛ˇ+*+*+*+*ˇäH◊·Å€Ò€◊◊͡$ˇˇˇˇÌˇ$+*$+*$+*$+*$+*ˇˇ˛ˇˇ*$+*$+*$+*$+*ˇäT◊¸Å˘¯€ÊÅ√€ÂÅ€˘¯¸Å◊◊ͲˇˇˇÓ˛ˇ*++*++*++*++*++ˇˇ˛ˇˇ+*++*++*++*++ˇäj◊¸Å¯·¸Ë¯€ÊÅ„€◊◊˜€◊◊Ô€ÂÅ€¯˛Ë¯Ë¯·¸Å◊◊͡ˇˇˇÔ˛ˇ+*+*+*+*+*+*ˇˇ˛ˇ*+*+*+*+*ˇää◊·˝€¯·¸Ë¯‡€˙◊€◊◊€◊◊˝€
  809. ◊◊€◊€€◊€◊◊€˝◊˛€˝◊€˝◊€◊◊€◊◊€◊◊‡€¯˛Ë¯Ë¯·¸€◊◊ΡˇˇˇÒ˝ˇ+*$+*$+*$+*$+*$+*$ˇ˛ˇˇ+*$+*$+*$+*$ˇäú◊¸Å¯·¸Ë¯€ÊŸ€ ◊◊€◊€€◊€◊◊€◊◊˝€#◊◊€◊€€◊€◊◊€◊◊€◊◊€◊◊€◊◊€◊€€◊€◊◊€◊◊€◊◊˝€ÂÅ€¯˛Ë¯Ë¯·¸Å◊◊Ͳˇ˛ˇı˛ˇ2+*ˇ+*++*++*++*++*++*ˇˇˇˇˇ++*++*++*++*+˚ˇè£◊¸Å¯·¸Ë¯€ÊŸ€ ◊◊€◊€€◊€◊◊€◊◊˝€#◊◊€◊€€◊€◊◊€◊◊€◊◊€◊◊€◊◊€◊€€◊€◊◊€◊◊€◊◊˝€ÂÅ€¸¯˯·¸Å◊◊͡+˛ˇ˛ˇ˘˛ˇ+*ˇ+*+*+*+*+*+*ˇ˛ˇˇ+*+*+*+*ˇˇ˛ˇè°◊·˝€¯·¸Ë¯‡€ ◊◊€◊€€◊€◊◊€◊◊˝€#◊◊€◊€€◊€◊◊€◊◊€◊◊€◊◊€◊◊€◊€€◊€◊◊€◊◊€◊◊‡€¯¸Ë¯·¸€◊◊͡$+˛ˇ˛ˇ˚ˇ+*$+ˇ$+*$+*$+*$+*$+*$˛ˇ˛ˇˇ*$+*$+*$+*$+*ˇˇ˛ˇèî◊¸Å¯·˚¯€ÊŸ€◊◊€◊€€◊€¸◊˝€˙◊    €◊◊€◊◊€◊◊€¸◊€˝◊€˙◊¸€ÂÅ€˙¯·¸Å◊◊͡*++*˛ˇ˛ˇ˝!ˇ++*+ˇ*++*++*++*++*++ˇˇˇˇ˝ˇ+*++*++*++*++˛ˇˇˇêr◊¸Å¯˙·€ÊÅÒ€◊◊’€ÂÅ€¯˙·¸Å◊◊͡+*+˛ˇ˛ˇ"ˇ+*+ˇ+*+*+*+*+ˇˇˇˇ¸ˇ*+*+*+*+*ˇˇ˛ˇê\◊·Ã€¸◊´€◊◊͡+*$+*$+ˇˇ˝ˇ*$+*$ˇ+*$+*$+*$+*$+˛ˇ˛ˇ˚ˇ+*$+*$+*$+*$ˇˇ˛ˇêV◊ÅÍÍ◊◊Í
  810. ˇ+*++*++˙ˇ+*++*ˇ+*++*++*++*˛ˇˇˇ˙ˇˇ++*++*++*++*+ˇˇ˛ˇêRÅ◊Ì◊Í%ˇ+*+*+*+*+*+*ˇ+*+*+*+˛ˇ˝ˇ˘ˇ+*+*+*+*ˇˇ˛ˇêQ◊Å◊◊Í"ˇ$+*$+*$+*$+*$+*$+ˇ$+*$+*$˘ˇ˜ˇˇ+*$+*$+*$+*$+*˛ˇˇˇêO◊Å◊◊Í ˇ*++*++*+˚ˇ++*+ˇ*++*+˝ˇ˛ˇÙˇ++*++*++*++*++ˇˇ˛ˇˇêN◊Å◊◊͡+*+*ˇˇ˛ˇ    +*+ˇ+¸ˇ˝ˇÛˇˇ+*+*+*+*+*ˇˇ˛ˇêJ◊Å◊◊͡+*$+*$+ˇˇˇˇˇ*$+*˚ˇ¸ˇˇ+*$+*$+*$+*$+*$ˇˇ˛ˇˇêE◊Å◊◊͡+*++*+ˇˇˇˇ˙ˇ˚ˇÓ˛ˇ+*++*++*++*++*ˇ˛ˇˇˇêB◊Å◊◊͡+*+*ˇˇˇˇ˛¯ˇÍˇˇ+*+*+*+*+*ˇˇˇˇˇêB◊Å◊◊Í ˇ$+*$ˇˇˇˇ˝˛ˇÊ˛ˇ+*$+*$+*$+*$+*$ˇˇˇˇ˛ˇê>◊Å◊◊Í ˇ*++*ˇˇˇˇflˇˇ+ˇ++*++*++*++*+˛ˇˇˇ˝ˇê<◊Å◊◊͡+˛ˇˇˇ‡˛ˇ+*ˇ+*+*+*+*ˇˇ˛ˇ¸ˇê<◊Å◊◊͡+*ˇˇ˛ˇˇ·˛ˇ+*$ˇ*$+*$+*$+*$+ˇˇˇˇ˙ˇê<◊Å◊◊͡ˇˇ˛ˇ„˝ˇ*++*+ˇ+*++*++*++*˛ˇˇˇ˙ˇˇê:◊Å◊◊Ͳˇˇˇ‰˝ˇ+*+*ˇ*+*+*+*ˇˇ˛ˇ˘ˇèòÅlÄ¿lHHˆtÄ&™Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  811. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄ¿l∑6˜¢'=◊Å◊◊͡ˇˇˇÊ˝ˇ$+*$+*$+*ˇ+*$+*$+*$ˇˇˇˇ¯ˇˇè?◊Å◊◊ΡˇˇˇÈ¸ˇ++*++*++*++ˇ++*++*+˛ˇˇˇ¯ˇˇé@◊Å◊◊͡ˇ˛ˇÒ˙ˇ+*+*+*+*+*ˇ+*+*˛ˇ˛ˇ˜ˇçD◊Å◊◊Í˝ˇˇˇ˜˙ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$˛ˇ˛ˇˆˇˇçK◊Å◊◊͡+˛ˇ˛ˇ˙$ˇˇ*++*ˇ+*++*++*++*++*++*+ˇ+*+˛ˇ˛ˇıˇˇåH◊Å◊◊͡+*˛ˇ˛ˇ¸!ˇ*+*ˇ+*+*+*+*+*+*ˇ*˝ˇ˝ˇı˛ˇãI◊Å◊◊͡$+*$˛ˇ˛ˇ˛ˇ+*$+ˇ$+*$+*$+*$+*$+*$+*˛ˇ˛ˇÛ˛ˇäK◊Å◊◊͡*++*++˛ˇ˛ˇˇ++*+ˇ*++*++*++*++*++*+˛ˇ˛ˇÚˇˇ+ˇäH◊Å◊◊͡+*+*ˇˇ˛ˇ+*+ˇ+*+*+*+*+˝ˇ˝ˇÚ˛ˇ+*ˇäF◊Å◊◊Í ˇ+*$+*$+*$˚ˇ*$+*$ˇ+*$+*$+*$+*$+˛ˇ˛ˇˇˇ+*$ˇäE◊Å◊◊Í%ˇ+*++*++*++*++*++*ˇ+*++*++*+¸ˇ˝ˇÔˇˇ++*+ˇä?◊Å◊◊Í ˇ+*+*+*˚ˇ*+*ˇ+*+*˚ˇ˝ˇÓ˛ˇ+*ˇä@◊Å◊◊͡$+*$+*$ˇˇ˛ˇ
  812. +*$+ˇ$+*¸ˇ˚ˇÏ
  813. ˇˇ$+*$+*ˇä;◊Å◊◊͡*++*++*ˇˇˇˇˇ++*+˚ˇ˚ˇÈ˛ˇ    +*++*++ˇä9◊Å◊◊͡+*+*ˇˇˇˇˇ+¸ˇ˚ˇÁ˝ˇ +*+*+*ˇä4◊Å◊◊͡+*$+*$ˇˇˇˇ˛˜ˇ‰˛ˇ$+*$+*$+*$ˇä5◊Å◊◊Í ˇ+*++ˇˇˇˇ˝¸ˇ‚˝ˇ+*++*++*++*+ˇä3◊Å◊◊Í ˇ+*+ˇˇˇˇ⁄˛ˇ*+*+*+*+*ˇä4◊Å◊◊Í
  814. ˇ$+*ˇˇˇˇ€˛ˇ*$+*$+*$+*$+*$+*ˇä5◊Å◊◊Í    ˇ*+ˇˇˇˇ›˝ˇ++*++*++*++*++*++ˇä7◊Å◊◊͡ˇˇˇˇfi˛ˇ+*ˇ+*+*+*+*+*+*ˇä8◊Å◊◊͡+ˇˇˇˇ·¸ˇ+*$ˇ*$+*$+*$+*$+*$+*$ˇä:◊Å◊◊ͲˇˇˇÂ˚ˇ +*++*+ˇ+*++*++*++*++*++*+ˇä?◊Å◊◊͡ˇˇˇÈ˚ˇ%+*+*+*ˇ*+*+*+*+*+*ˇäC◊Å◊◊βˇ˛ˇÓ˚ˇ*+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇäI◊Å◊◊Ͳˇ˛ˇı˚ˇ/++*++*++*++*++*++ˇ++*++*++*++*++*++ˇäQ◊Å◊◊͡˛ˇˇˇ˘˝ˇ4+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇäT◊Å◊◊͡+*$˛ˇ˛ˇ˚8ˇ*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇ*$+*$+*$+*$+*$+*$ˇäV◊Å◊◊͡+*+˛ˇ˛ˇ˝8ˇ+*++*ˇ+*++*++*++*++*++*+ˇ+*++*++*++*++*++*+ˇäX◊Å◊◊͡+*+*˛ˇ˛ˇ:ˇ*+*ˇ+*+*+*+*+*+*ˇ*+*+*+*+*+*ˇäW◊Å◊◊Í    ˇ$+*$+*$˛ˇ˝ˇ7+*$+ˇ$+*$+*$+*$+*$+*$+*ˇ+*$+*$+*$+*$+*$+*ˇäU◊Å◊◊Í ˇ*++*++*+˚ˇ7++*+ˇ*++*++*++*++*++*++ˇ++*++*++*++*++*++ˇäX◊Å◊◊ÍIˇ+*+*+*+*+*+ˇ+*+*+*+*+*+*ˇ+*+*+*+*+*+*ˇä>◊Å◊◊͸ˇ++*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˡäB◊Å◊◊Í1ˇˇˇˇ+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇÅÚB◊Å◊◊͡ˇ˛,ˇ*+*+*+*+*ˇ+*+*+*+*+*+*ˇÅÚB◊Å◊◊͡ˇ˛,ˇ+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇÅÚA◊Å◊◊Ͳˇ.ˇˇ+*++*++*++*+ˇ*++*++*++*++*++*++ˇÅÚ@◊Å◊◊Ͳˇ˛+ˇ+*+*+*+*+ˇ+*+*+*+*+*+*ˇÅÚB◊Å◊◊͡ˇ˛,ˇˇ$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇÅÚB◊Å◊◊͡ˇ˛,ˇˇ*++*++*++*++*ˇ+*++*++*++*++*++*+ˇÅÚB◊Å◊◊͡ˇ˛,ˇˇ+*+*+*+*ˇ+*+*+*+*+*+*ˇÅÚB◊Å◊◊͡ˇ˛ˇ*+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇÅÚG◊Å◊◊ˆ¸ˇ˚2ˇˇˇˇˇ+*++*++*++*+ˇ*++*++*++*++*++*++ˇÅÚM◊Å◊◊˜ˇˇˇˇ˝˛ˇ˛ˇ-ˇ+*+*+*+*+ˇ+*+*+*+*+*+*ˇÅÚO◊Å◊◊˘˛ˇ˛ˇ˛ˇˇˇ˝+ˇ$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇÅÚM◊Å◊◊˙ˇˇ˛ˇˇ˝ˇ˝ˇ¸+ˇ*++*++*++*++*ˇ+*++*++*++*++*++*+ˇÅÚJ◊Å◊◊˚ˇˇ˛ˇ˚ˇ˘+ˇ+*+*+*+*ˇ+*+*+*+*+*+*ˇÅÚI◊Å◊◊¸ˇˇˇˇ˝˛ˇˆ+ˇ+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇÅÚF◊Å◊◊˝ˇˇˇˇÔ,ˇˇ+*++*++*++*+ˇ*++*++*++*++*++*++ˇÅÚF◊Å◊◊˛ˇˇˇˇÓ,ˇ+*+*+*+*+ˇ+*+*+*+*+*+*ˇÅÚF◊Å    ◊◊ˇˇˇˇÓ-ˇˇ*$+*$+*$+*$+*$ˇ+*$+*$+*$+*$+*$+*$ˇÅÚE◊Å◊◊ˇˇˇˇÌ-ˇ+*++*++*++*++*ˇ+*++*++*++*++*++*+ˇÅÚE◊Å◊◊ˇˇˇˇÌ.ˇˇ+*+*+*+*+*ˇ+*+*+*+*+*+*ˇÅÚE◊Å◊ˇˇˇˇÓ˛ˇ-*$+*$+*$+*$+*$+ˇ$+*$+*$+*$+*$+*$+*ˇÅÚF◊Åˇˇˇˇ˝ˇ/++*++*++*++*++*+ˇ*++*++*++*++*++*++ˇÅÚH◊Å˛ˇ˛ˇÛ˛ˇ2ˇ+*+*+*+*+*+ˇ+*+*+*+*+*+*ˇÅÚ4◊Å◊◊˛ˇ˛ˇ¯˝ˇ˛ˇ+*$+*$+*$+*$+*$+*$ÁˇÅÚ6◊Å    ◊◊ˇˇˇˇ˙ˇˇ˚ˇ+*++*++*++*++*++*ˇÅŸ5◊Å◊◊˛˛ˇ˛ˇ¸ˇ˙ˇ+*+*+*+*+*+*ˇÅŸ5◊Å◊◊¸˛ˇ˛ˇ˛ˇ˙ˇ$+*$+*$+*$+*$+*$+ˇÅŸ4◊Å◊◊˙˛ˇ˛ˇˇ˙ˇ*++*++*++*++*++*+ˇÅŸ1◊Å◊◊¯˛ˇ˛ˇ˙ˇ+*+*+*+*+*+ˇÅŸ-◊Å◊◊ˆ¸ˇ˙ˇ+*$+*$+*$+*$+*$+*$ˇÅŸòÅl¿ÿlHHˆt|&´Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  815. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê¿ÿl˜6¢')◊Å◊◊͡+*++*++*++*++*++*ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+*ˇÅŸ)◊Å◊◊͡$+*$+*$+*$+*$+*$+ˇÅŸ)◊Å◊◊͡*++*++*++*++*++*+ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+ˇÅŸ)◊Å◊◊͡+*$+*$+*$+*$+*$+*$ˇÅŸ)◊Å◊◊͡+*++*++*++*++*++*ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+*ˇÅŸ)◊Å◊◊͡$+*$+*$+*$+*$+*$+ˇÅŸ)◊Å◊◊͡*++*++*++*++*++*+ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+ˇÅŸ)◊Å◊◊͡+*$+*$+*$+*$+*$+*$ˇÅŸ)◊Å◊◊͡+*++*++*++*++*++*ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+*ˇÅŸ)◊Å◊◊͡$+*$+*$+*$+*$+*$+ˇÅŸ)◊Å◊◊͡*++*++*++*++*++*+ˇÅŸ)◊Å◊◊͡+*+*+*+*+*+ˇÅŸ)◊Å◊◊͡+*$+*$+*$+*$+*$+*$ˇÅŸ◊Å◊◊ÍËˇÅŸ◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡ò.@l@l6O¢ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈ Ä?ˇˇÈÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÄ0ÊÔˇÊ”””””””””””””””””””ò.@Äl@ÄlO6袔”””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””ò.Ä¿lÄ¿lè6œ¢””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””””ò.¿ÿl¿ÿlœ6Á¢””””””””””””””””””””””””òÅl@lHHˆtÄ&¨Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  816. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@l6O¢'◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÍˇÅ¡◊Å◊◊ÈˇÅ¡◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©◊Å◊◊Å©Å◊Ì◊Å©ÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïòÅl@ÄlHHˆt|&≠IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  817. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@ÄlO6è¢'ÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïòÅlÄ¿lHHˆtÄ&ÆÄ˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  818. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄ¿lè6œ¢'ÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïòÅl¿ÿlHHˆt|&ØÄ˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  819. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê¿ÿlœ6Á¢'ÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅïÅÅï†è†É†ø
  820. d,     Helvetica    .°dONLNd3>@(Z6Figure 3°dONLNd    ?Jx* The View Port Hierarchy,
  821. Courier°dONLNd!]hä*Jvoid GetFixedWindowBounds(WindowPtr myWindow, gxRectangle *boundingBoxPtr)°dONLNdlit* {°dONLNdou&ÄI+ GrafPtr°dONLNdyuoÄó)IoldPort;°dONLNdÉÅ&å:(®DRect°dONLNdãÅoåú)I    qdBounds;°dONLNdñç&ò](¥D gxRectangle°dONLNd¢çoòú)I    gxBounds;°dONLNd≠•&∞Ä(ÃDGetPort(&oldPort);°dONLNd¡±&ºÄ* SetPort(myWindow);°dONLNd’Ω&»º* qdBounds = myWindow->portRect;°dONLNd˜’&‡u*C// Convert the QuickDraw rectangle into a GX fixed-point rectangle.°dONLNd<·&Ï* /GXQDGlobalToFixedLocal((Point *) &qdBounds.top,°dONLNdvÌö¯++t  (gxPoint *) &gxBounds.left);°dONLNdï˘& ( D2GXQDGlobalToFixedLocal((Point *) &qdBounds.bottom,°dONLNd“ö0+t  (gxPoint *) &gxBounds.right);°dONLNdÚ&(≠(DD*boundingBoxPtr = gxBounds;°dONLNd)&4{* SetPort(oldPort);°dONLNd!5@(\6} u4u&, Palatino (x) +
  822. 19(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ 102 330 466 591]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2.2%%For: (Robin Gold) (Forbes Mill Press)%%Title: (\245 Alexander_Fig 03 v.4)%%CreationDate: (7/11/93) (7:46 PM)%%BoundingBox: 102 330 466 591%%DocumentProcessColors: Black%%DocumentFonts: Helvetica%%DocumentFiles:Blue Note Current:Issue 15 from Diane:#15 Converted Art & Photos:Alexander Art:windows capture%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_typography_AI3 1.0 1%%+ procset Adobe_IllustratorA_AI3 1.0 1%AI3_ColorUsage: Color%AI3_IncludePlacedImages%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: 96 312 356 595%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_typography_AI3 1.1 0%%Title: (Typography Operators)%%Version: 1.0 %%CreationDate:(5/31/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_typography_AI3 47 dict dup begin put/initialize            % - initialize -{/TZ where    {    pop    }    {    Adobe_typography_AI3 begin    Adobe_typography_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_typography_AI3 begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_typography_AI3 eq    {    end    } if} def% [ number value stream [ array for encoding modification ] modifyEncoding ==> [ modified array ]/modifyEncoding{    /_tempEncode exch ddef        % pointer for sequential encodings    /_pntr 0 ddef        {        % get bottom object        counttomark -1 roll        % is it a mark ?        dup type dup /marktype eq                 {            % exit            pop pop exit        }        {            % ... object ... type ....            % insert if a nametype            /nametype eq            {                % insert the name at _pntr and increment pointer                _tempEncode /_pntr dup load dup 3 1 roll 1 add ddef 3 -1 roll                put            }            {                % reset _pntr if it's a number                /_pntr exch ddef                                }            ifelse        }        ifelse    }    loop            % return the modified encoding    _tempEncode}def/TE    % Set std platform encoding     % (encoding pairs) TE -{    StandardEncoding 256 array copy modifyEncoding     /_nativeEncoding exch def} def% re-define font% expected arguments% for 'normal fonts : % [ /_Helvetica-Bold/Helvetica-Bold direction fontScript defaultEncoding TZ%% for cartographic, pictographic, and expert fonts :% [ ... number value stream ... /_Symbol/Symbol %    direction fontScript defaultEncoding TZ% for blended fonts w/ default encoding :% [ /_AdobeSans_20ULig1XCond-Bold/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ% for blended fonts w/ special encoding :% [ ... number value stream ... /_AdobeSans_20ULig1XCond/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ/TZ        {    % set weight vector (if present)    dup type /arraytype eq {/_wv exch def} {/_wv 0 def} ifelse     % platform dependent coding flag    /_useNativeEncoding exch def    % pop fontScript & direction    pop pop        % create a new dictionary with length    % equal to original dictionary length + 2    % copy all the key/value pairs except FID    % call makeblended font with the weight values if _wv is an array    findfont _wv type /arraytype eq {_wv makeblendedfont} if dup length 2 add dict        begin            % copy all the values but the FID        % into the new dictionary        mark exch        {            1 index /FID ne { def } if cleartomark mark        }        forall        % discard last mark        pop                % define FontName        /FontName exch def                % if no re-encoding stream is present        % then if the base encoding vector of the font        % is the same as StandardEncoding        % and the use platform encoding flag is true        % then install AI platform encoding        % else leave the base encoding in effect        counttomark 0 eq        {            1 _useNativeEncoding eq            {                /Encoding _nativeEncoding def            }            if            % clean up            cleartomark        }        {                % custom encoding to be done            % start off with a copy of the font's standard encoding            /Encoding load 256 array copy             modifyEncoding /Encoding exch def        }        ifelse                FontName currentdict    end        % register the new font    definefont pop}def% text painting operators/tr                    % string tr ax ay string {_ax _ay 3 2 roll} def/trj                % string trj cx cy fillchar ax ay string {_cx _cy _sp _ax _ay 6 5 roll} def/a0{/Tx    % text                            % textString Tx -    {    dup     currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    } ddef/Tj    % justified t°¿ ext                % textString Tj -    {    dup    currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    } ddef    } def/a1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    grestore 3 1 roll moveto tr sp    } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp    } ddef    } def/e0{/Tx    % text                            % textString Tx -    {    tr _psf    } ddef/Tj    % justified text                % textString Tj -    {    trj _pjsf    } ddef} def/e1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave     tr _psf      grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave     trj _pjsf    grestore 3 1 roll moveto tr sp     } ddef} def/i0{/Tx    % text                            % textString Tx -    {    tr sp    } ddef/Tj    % justified text                % textString Tj -    {    trj jsp    } ddef} def/i1{W N} def/o0{/Tx    % text                            % textString Tx -    {    tr sw rmoveto    } ddef/Tj    % justified text                % textString Tj -    {    trj swj rmoveto    } ddef} def/r0{/Tx    % text                            % textString Tx -    {    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    trj _ctm _pjss    } ddef} def/r1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    tr _ctm _pss     grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp     } ddef} def% font operators% Binding/To    % begin text                     % bindType To -{    pop _ctm currentmatrix pop} def/TO    % end text                    % TO -{    Te _ctm setmatrix newpath} def% Text paths/Tp    % begin text path                % a b c d tx ty startPt Tp -{    pop _tm astore pop _ctm setmatrix     _tDict begin /W {} def /h {} def} def/TP    % end text path                    % TP -{    end    iTm 0 0 moveto} def% Render mode & matrix operators/Tr    % begin render                    % render Tr - {    _render 3 le {currentpoint newpath moveto} if    dup 8 eq {pop 0} {dup 9 eq {pop 1} if} ifelse    dup /_render exch ddef    _renderStart exch get load exec} def/iTm % internal set text matrix        % - iTm -    (uses _tm as implicit argument){_ctm setmatrix _tm concat 0 _rise translate _hs 1 scale} def/Tm % set text matrix                % a b c d tx ty Tm -{_tm astore pop iTm 0 0 moveto} def/Td % translate text matrix         % tx ty Td -{_mtx translate _tm _tm concatmatrix pop iTm 0 0 moveto} def/Te    % end render                    % - Te -{    _render -1 eq {} {_renderEnd _render get dup null ne {load exec} {pop} ifelse} ifelse    /_render -1 ddef} def% Attributes/Ta    % set alignment                    % alignment Ta -{pop} def/Tf    % set font name and size        % fontname size Tf -{dup 1000 div /_fScl exch ddefexch findfont exch scalefont setfont} def/Tl    % set leading                    % leading paragraphLeading Tl -{pop0 exch _leading astore pop} def/Tt    % set user tracking                % userTracking Tt -{pop} def/TW % set word spacing                % minSpace optSpace maxSpace TW -{3 npop} def/Tw    % set computed word spacing        % wordSpace Tw{/_cx exch ddef} def/TC % set character spacing            % minSpace optSpace maxSpace TC -{3 npop} def/Tc    % set computed char spacing     % charSpace Tc -{/_ax exch ddef} def/Ts % set super/subscripting (rise)    % rise Ts -{/_rise exch ddefcurrentpointiTmmoveto} def/Ti    % set indentation                % firstStartIndent otherStartIndent stopIndent Ti -{3 npop} def/Tz % set horizontal scaling        % scalePercent Tz -{100 div /_hs exch ddefiTm} def/TA % set pairwise kerning            % autoKern TA -                                    %    autoKern = 0 -> no pair kerning                                    %             = 1 -> automatic pair kerning{pop} def/Tq % set hanging quotes            % hangingQuotes Tq -                                    %    hangingQuotes     = 0 -> no hanging quotes                                    %                     = 1 -> hanging quotes{pop} def% Text Bodies/TX {pop} def%/Tx    % non-justified text            % textString Tx -%/Tj    % justified text                % textString Tj -/Tk    % kern                            % autoKern kernValue Tk -                                    %      autoKern = 0 -> manual kern, = 1 -> auto kern                                    %    kernValue = kern value in em/1000 space{exch pop _fScl mul neg 0 rmoveto} def/TK    % non-printing kern                % autoKern kernValue TK -{2 npop} def/T* % carriage return & line feed    % - T* -{_leading aload pop neg Td} def/T*- % carriage return & negative line feed    % - T*- -{_leading aload pop Td} def/T-    % print a discretionary hyphen    % - T- -{_hyphen Tx} def/T+    % discretionary hyphen hyphen    % - T+ -{} def/TR    % reset pattern matrix             % a b c d tx ty TR -{_ctm currentmatrix pop     _tm astore pop iTm 0 0 moveto } def/TS    % special chars                    % textString justified TS -{0 eq {Tx} {Tj} ifelse} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_IllustratorA_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Abbreviated Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_IllustratorA_AI3 61 dict dup begin put% initialization/initialize                % - initialize -{% 47 vars, but leave slack of 10 entries for custom Postscript fragmentsuserdict /Adobe_IllustratorA_AI3_vars 57 dict dup begin put% paint operands/_lp /none def/_pf {} def/_ps {} def/_psf {} def/_pss {} def/_pjsf {} def/_pjss {} def/_pola 0 def/_doClip 0 def% paint operators/cf    currentflat def    % - cf flatness% typography operands/_tm matrix def/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def /_renderEnd [null null null null /i1 /i1 /i1 /i1] def/_render -1 def/_rise 0 def/_ax 0 def            % x character spacing    (_ax, _ay, _cx, _cy follows awidthshow naming convention)/_ay 0 def            % y character spacing/_cx 0 def            % x word spacing/_cy 0 def            % y word spacing/_leading [0 0] def/_ctm matrix def/_mtx matrix def/_sp 16#020 def/_hyphen (-) def/_fScl 0 def/_cnt 0 def/_hs 1 def/_nativeEncoding 0 def/_useNativeEncoding 0 def/_tempEncode 0 def/_pntr 0 def/_tDict 2 dict def% typography operators/Tx {} def/Tj {} def% compound path operators/CRender {} def% printing/_AI3_savepage {} def% color operands/_gf null def/_cf 4 array def/_if null def/_of false def/_fc {} def/_gs null def/_cs 4 array def/_is null def/_os false def/_sc {} def/_i null defAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3    {    dup xcheck        {        bind        } if    pop pop    } forallendendAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3_vars beginnewpath} def/terminate                % - terminate -{endend} def% definition operators/_                    % - _ nullnull def/ddef                % key value ddef -{Adobe_IllustratorA_AI3_vars 3 1 roll put} def/xput                % key value literal xput -{dup load dup length exch maxlength eq    {    dup dup load dup    length 2 mul dict copy def    } ifload begin def end} def/npop                % integer npop -{    {    pop    } repeat} def% marking operators/sw                    % ax ay string sw x y {dup length exch stringwidthexch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add} def/swj                % cx cy fillchar ax ay string swj x y{dup 4 1 rolldup length exch stringwidth exch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add 6 2 roll /_cnt 0 ddef{1 index eq {/_cnt _cnt 1 add ddef} if} forall popexch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop} def/ss                    % ax ay string matrix ss -{4 1 roll    {                % matrix ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put pop    gsave    false charpath currentpoint    4 index setmatrix    stroke    grestore    moveto    2 copy rmoveto    } exch cshow3 npop} def/jss                % cx cy fillchar ax ay string matrix jss -{4 1 roll    {                % cx cy fillchar matrix ax ay char 0 0 {proc} -       2 npop     (0) exch 2 copy 0 exch put     gsave    _sp eq         {        exch 6 index 6 index 6 index 5 -1 roll widthshow          currentpoint        }        {        false charpath currentpoint        4 index setmatrix stroke        }ifelse    grestore    moveto    2 copy rmoveto    } exch cshow6 npop} def% path operators/sp                    % ax ay string sp -{    {    2 npop (0) exch    2 copy 0 exch put pop    false charpath°¿     2 copy rmoveto    } exch cshow2 npop} def/jsp                    % cx cy fillchar ax ay string jsp -{    {                    % cx cy fillchar ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put     _sp eq         {        exch 5 index 5 index 5 index 5 -1 roll widthshow          }        {        false charpath        }ifelse    2 copy rmoveto    } exch cshow5 npop} def% path construction operators/pl                % x y pl x y{transform0.25 sub round 0.25 add exch0.25 sub round 0.25 add exchitransform} def/setstrokeadjust where    {    pop true setstrokeadjust    /c                % x1 y1 x2 y2 x3 y3 c -    {    curveto    } def    /C    /c load def    /v                % x2 y2 x3 y3 v -    {    currentpoint 6 2 roll curveto    } def    /V    /v load def    /y                % x1 y1 x2 y2 y -    {    2 copy curveto    } def    /Y    /y load def    /l                % x y l -    {    lineto    } def    /L    /l load def    /m                % x y m -    {    moveto    } def    }    {%else    /c    {    pl curveto    } def    /C    /c load def    /v    {    currentpoint 6 2 roll pl curveto    } def    /V    /v load def    /y    {    pl 2 copy curveto    } def    /Y    /y load def    /l    {    pl lineto    } def    /L    /l load def    /m    {    pl moveto    } def    }ifelse% graphic state operators/d                    % array phase d -{setdash} def/cf    {} def            % - cf flatness/i                    % flatness i -{dup 0 eq    {    pop cf    } ifsetflat} def/j                    % linejoin j -{setlinejoin} def/J                    % linecap J -{setlinecap} def/M                    % miterlimit M -{setmiterlimit} def/w                    % linewidth w -{setlinewidth} def% path painting operators/H                    % - H -{} def/h                    % - h -{closepath} def/N                    % - N -{_pola 0 eq     {    _doClip 1 eq {clip /_doClip 0 ddef} if     newpath    }     {    /CRender {N} ddef    }ifelse} def/n                    % - n -{N} def/F                    % - F -{_pola 0 eq     {    _doClip 1 eq         {        gsave _pf grestore clip newpath /_lp /none ddef _fc         /_doClip 0 ddef        }        {        _pf        }ifelse    }     {    /CRender {F} ddef    }ifelse} def/f                    % - f -{closepathF} def/S                    % - S -{_pola 0 eq     {    _doClip 1 eq         {        gsave _ps grestore clip newpath /_lp /none ddef _sc         /_doClip 0 ddef        }        {        _ps        }ifelse    }     {    /CRender {S} ddef    }ifelse} def/s                    % - s -{closepathS} def/B                    % - B -{_pola 0 eq     {    _doClip 1 eq     % F clears _doClip    gsave F grestore         {        gsave S grestore clip newpath /_lp /none ddef _sc        /_doClip 0 ddef        }         {        S        }ifelse    }    {    /CRender {B} ddef    }ifelse} def/b                    % - b -{closepathB} def/W                    % - W -{/_doClip 1 ddef} def/*                    % - [string] * -{count 0 ne     {    dup type (stringtype) eq {pop} if    } if _pola 0 eq {newpath} if} def% group operators/u                    % - u -{} def/U                    % - U -{} def/q                    % - q -{_pola 0 eq {gsave} if} def/Q                    % - Q -{_pola 0 eq {grestore} if} def/*u                    % - *u -{_pola 1 add /_pola exch ddef} def/*U                    % - *U -{_pola 1 sub /_pola exch ddef _pola 0 eq {CRender} if} def/D                    % polarized D -{pop} def/*w                    % - *w -{} def/*W                    % - *W -{} def% place operators/`                    % matrix llx lly urx ury string ` -{/_i save ddef6 1 roll 4 npopconcat popuserdict begin/showpage {} def0 setgray0 setlinecap1 setlinewidth0 setlinejoin10 setmiterlimit[] 0 setdashnewpath0 setgrayfalse setoverprint} def/~                    % - ~ -{end_i restore} def% color operators/O                    % flag O -{0 ne/_of exch ddef/_lp /none ddef} def/R                    % flag R -{0 ne/_os exch ddef/_lp /none ddef} def/g                    % gray g -{/_gf exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _gf setgray    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/G                    % gray G -{/_gs exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _gs setgray    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/k                    % cyan magenta yellow black k -{_cf astore pop/_fc{_lp /fill ne    {    _of setoverprint    _cf aload pop setcmykcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/K                    % cyan magenta yellow black K -{_cs astore pop/_sc{_lp /stroke ne    {    _os setoverprint    _cs aload pop setcmykcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/x                    % cyan magenta yellow black name gray x -{/_gf exch ddeffindcmykcustomcolor/_if exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _if _gf 1 exch sub setcustomcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/X                    % cyan magenta yellow black name gray X -{/_gs exch ddeffindcmykcustomcolor/_is exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _is _gs 1 exch sub setcustomcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def% locked object operator/A                    % value A -{pop} defcurrentdict readonly pop endsetpacking% annotate page operator/annotatepage{} def%%EndResource%%EndProlog%%BeginSetup%%IncludeFont: HelveticaAdobe_cmykcolor /initialize get execAdobe_cshow /initialize get execAdobe_customcolor /initialize get execAdobe_typography_AI3 /initialize get execAdobe_IllustratorA_AI3 /initialize get exec[39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caronTE%AI3_BeginEncoding: _Helvetica Helvetica[/_Helvetica/Helvetica 0 0 1 TZ%AI3_EndEncoding TrueType%%EndSetup0 A0 O1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G0 i 0 J 0 j 1 w 4 M []0 d%AI3_Note:0 D346.8125 429.6875 m346.8125 587.25 L200.25 587.25 L200.25 429.6875 L346.8125 429.6875 Lb0 To1 0 0 1 273.5312 572.1562 0 TpTP-26.2217 0 Td0 Tr0 g/_Helvetica 8 Tf0 Ts100 Tz0 Tt0 TA0 0 5 TC100 100 200 TW0 0 0 Ti1 Ta0 Tq9 0 Tl0 Tc0 Tw(Child view port) Tx (\r) TX TO1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G322.3125 405.1875 m322.3125 562.75 L175.75 562.75 L175.75 405.1875 L322.3125 405.1875 Lb0 To1 0 0 1 249.0312 547.6562 0 TpTP-26.2217 0 Td0 Tr0 g(Child view port) Tx (\r) TX TO1 0.51 0 0.305 (PANTONE 541 CV) 0.9 x0 R0 G297.8125 380.6875 m297.8125 538.25 L151.25 538.25 L151.25 380.6875 L297.8125 380.6875 Lb0 To1 0 0 1 427.7371 495.2126 0 TpTP0 Tr0 g0 Ta(Figure 3) Tx (\r) TX TO1 g0 R0 G273.3125 356.1875 m273.3125 513.75 L126.75 513.75 L126.75 356.1875 L273.3125 356.1875 Lb0 To1 0 0 1 200.0312 498.6562 0 TpTP-28.8926 0 Td0 Tr0 g1 Ta(Parent view port) Tx (\r) TX TO[0.5 0 0 0.5 102.25 330.25] 0 0 296 318(Blue Note Current:Issue 15 from Diane:#15 Converted Art & Photos:Alexander Art:windows capture)`%%BeginDocument: Blue Note Current:Issue 15 from Diane:#15 Converted Art & Photos:Alexander Art:windows capture%!PS-Adobe-3.0 EPSF-3.0%%Creator: Photoshop Version 2.5%%Title: windows capture%%CreationDate: 4/13/93 12:35 PM%%BoundingBox: 0 0 296 318%%SuppressDotGainCompensation%%DocumentProcessColors: Black%%EndComments%%BeginProlog%%EndProlog%%BeginSetup%%EndSetup%ImageData: 208 224 8 1 0 208 1 "beginimage"%BeginPhotoshop: 268%3842494D03E90000000000780003000000480048000°¿ 0000002DA0228FFE1FFE2%02F902460347052803FC00020000004800480000000002DA0228000100000064%000000010001010100000001270F000100010000000000000000000000000002%0019019000000000004000000000000000000001000000000000000000000000%000000003842494D03ED0000000000100032AAAB000100010032AAAB00010001%3842494D03F300000000000700000000000000003842494D03F4000000000012%003500000001002D000000060000000000003842494D03F700000000001C0000%FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03E800003842494D03FD%000000000006020100010000%EndPhotoshopgsave40 dict begin/_image systemdict /image get def/_setgray systemdict /setgray get def/_currentgray systemdict /currentgray get def/_settransfer systemdict /settransfer get def/_currenttransfer systemdict /currenttransfer get def/blank 0 _currenttransfer exec1 _currenttransfer exec eq def/negative blank{0 _currenttransfer exec 0.5 lt}{0 _currenttransfer exec 1 _currenttransfer exec gt}ifelse def/inverted? negative def/level2 systemdict /languagelevel known{languagelevel 2 ge} {false} ifelse defblank not {{} bind/__settransfer {{dummy1 exec dummy2 exec}dup 0 4 -1 roll put dup 2 _currenttransfer put_settransfer} def__settransfer} ifgsave/rows 224 def/cols 208 def72 65536 mul 3320491 div dup cols mul exch rows mul scalelevel2 {/DeviceGraysetcolorspace} if/picstr1 208 string def/readdata {currentfile exch readstring pop} def/image2 level2 {/image load def} {{beginWidth Height BitsPerComponent ImageMatrix/DataSource load image end} def} ifelse/beginimage {image2} def12 dict begin/ImageType 1 def/Width cols def/Height rows def/ImageMatrix [cols 0 0 rows neg 0 rows] def/BitsPerComponent 8 def/Decode [0 1] def/DataSource {picstr1 readdata} defcurrentdict end%%BeginBinary: 46603beginimageˇ√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√√å√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈå√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈå√ggggggÈ+++++++++++ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+++++++++++Èggggggå√ÈÈÈÈÈÈÈ+√√√√√√√√√√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈ+√√√√√√√√√√ÈÈÈÈÈÈÈå√ggggggÈ+√ñññññññ+√ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+√ññññ+ññ+√Èggggggå√ÈÈÈÈÈÈÈ+√ñññññññ+√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈ+√ññññ+ññ+√ÈÈÈÈÈÈÈå√ggggggÈ+√ñññññññ+√ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+√ññññ+ññ+√Èggggggå√ÈÈÈÈÈÈÈ+√ñññññññ+√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈ+√ññññ+ññ+√ÈÈÈÈÈÈÈå√ggggggÈ+√ñññññññ+√ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+√+++++ññ+√Èggggggå√ÈÈÈÈÈÈÈ+√ñññññññ+√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈ+√ñññññññ+√ÈÈÈÈÈÈÈå√ggggggÈ+√ñññññññ+√ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+√ñññññññ+√Èggggggå√ÈÈÈÈÈÈÈ+√++++++++√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈ+√++++++++√ÈÈÈÈÈÈÈå√ggggggÈ+√√√√√√√√√√ÈggggggggggggggggggggggggggggggggggggggÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈgggggggggggggggggggggggggggggggggggggggÈ+√√√√√√√√√√Èggggggå√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈå√ÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈÈååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååååå厎ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ°¿ ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ°¿ ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ°¿ ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ°¿ ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ°¿ ˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇˇ%%EndBinarygrestore endgrestore%%EndDocument~u1 g0 R0 G1 j297.8177 506.3115 m297.8177 495.499 l301.9375 502.125 l297.8177 506.3115 lb303.765 491.3754 m303.8928 486.7667 299.3331 483.2661 290.1853 481.1873 C290.1853 476.3813 L276.9375 483.5625 L290.1853 496.0042 L290.1853 490.9515 L299.4213 493.0504 303.9803 496.5985 303.76 501.2733 C303.765 491.3754 Lb290.1802 492.0842 m299.2207 495.0828 301.8213 499.9981 297.8177 506.3115 C301.9427 506.3115 L306.5 499.125 302.5 493.75 290.1853 490.9515 C290.1802 492.0842 Lb290.1853 496.0042 m286.0603 496.0042 l272.8125 483.5625 l286.0603 476.3813 l290.1853 476.3813 l276.9375 483.5625 l290.1853 496.0042 lbUu273.3177 429.749 m273.3177 418.9365 l277.4375 425.5625 l273.3177 429.749 lb279.265 414.8129°¿
  823.   m279.3928 410.2042 274.8331 406.7036 265.6853 404.6248 C265.6853 399.8188 L252.4375 407 L265.6853 419.4417 L265.6853 414.389 L274.9213 416.4879 279.4803 420.036 279.26 424.7108 C279.265 414.8129 Lb265.6802 415.5217 m274.7207 418.5203 277.3213 423.4356 273.3177 429.749 C277.4427 429.749 L282 422.5625 278 417.1875 265.6853 414.389 C265.6802 415.5217 Lb265.6853 419.4417 m261.5603 419.4417 l248.3125 407 l261.5603 399.8188 l265.6853 399.8188 l252.4375 407 l265.6853 419.4417 lbUu322.3177 492.499 m322.3177 481.6865 l326.4375 488.3125 l322.3177 492.499 lb328.2899 477.25 m328.5 469 311.875 461.25 290.1853 458.7596 C290.1853 453.9536 L276.9375 461.1348 L290.1853 473.5765 L290.1853 468.5238 L313 471.375 328.5 478.75 328.26 487.4608 C328.2899 477.25 Lb290.1853 473.5765 m286.0603 473.5765 l272.8125 461.1348 l286.0603 453.9536 l290.1853 453.9536 l276.9375 461.1348 l290.1853 473.5765 lb290.1878 469.719 m310.75 472.3125 324.375 479.25 324.135 487.4608 C324.0625 488.8125 323 491.75 322.3177 492.499 C326.4427 492.499 L327.125 491.75 328.1875 488.8125 328.26 487.4608 C328.5 478.75 313 471.375 290.1853 468.5238 C290.1878 469.719 LbUu290.1853 451.139 m286.0603 451.139 l272.8125 438.6973 l286.0603 431.5161 l290.1853 431.5161 l276.9375 438.6973 l290.1853 451.139 lb346.8177 482.8115 m346.8177 471.999 l350.9375 478.625 l346.8177 482.8115 lb290.1892 447.2815 m325.9133 452.291 348.9866 467.0935 348.635 477.7733 C348.5625 479.125 347.5 482.0625 346.8177 482.8115 C350.9427 482.8115 L351.625 482.0625 352.6875 479.125 352.76 477.7733 C353.125 466.6875 328.25 450.4375 290.1853 446.0863 C290.1892 447.2815 Lb290.1853 436.3221 m328.25 440.6733 353.125 456.9233 352.76 468.0091 C352.76 477.7733 L353.125 466.6875 328.25 450.4375 290.1853 446.0863 C290.1853 451.139 l276.9375 438.6973 l290.1853 431.5161 l290.1853 436.3221 LbU0 g0 j223.5 460.5 mF0 To1 0 0 1 224.5312 523.1562 0 TpTP-26.2217 0 Td0 Tr(Child view port) Tx (\r) TX TO%AI3_BeginCropsuserdict /AI3_noCropMarks known not {uu0 R0 G0.5 w87 312 m60 312 LS96 303 m96 276 LSUu87 595 m60 595 LS96 604 m96 631 LSUu365 595 m392 595 LS356 604 m356 631 LSUu365 312 m392 312 LS356 303 m356 276 LSUU} if%AI3_EndCrops%%PageTrailergsave annotatepage grestore showpage%%TrailerAdobe_IllustratorA_AI3 /terminate get execAdobe_typography_AI3 /terminate get execAdobe_customcolor /terminate get execAdobe_cshow /terminate get execAdobe_cmykcolor /terminate get execAdobe_packedarray /terminate get exec%%EOF◊#ˇ ˇˇˇˇ#◊ 
  824. d, Palatino
  825. .°dONLNdñ$+¥@NNow we can create a QuickDraw GX rectangle that represents the portRect of the°dONLNdO$ñ0®* ;window. The rectangle will reside in the variable viewRect.,
  826. Courier    °dONLNdã=ñHm*+GetFixedWindowBounds(theWindow, &viewRect);
  827. °dONLNd∑Tñ`’*FWe need to adjust viewRect for the scroll bars attached to the window.    °dONLNdˇmñxh**viewRect.right -= ff(kScrollBarWidth - 1);°dONLNd*yñÑm* +viewRect.bottom -= ff(kScrollBarWidth - 1);,     Helvetica°dONLNdVëñúl*,Creating and activating the child view port.°dONLNdÇëlúo)÷ 
  828. °dONLNdÉêoú    )!Now we’re ready to create a child°dONLNd•úñ®(ƒ¥Oview port that’s attached to the parent view port. We want to create a new view°dONLNdı®ñ¥˛* Oport within the same view group (that is, sharing the same global space) as the°dONLNdE¥ñ¿Ú* window’s view port:    °dONLNdYÕñÿ»*
  829. gxViewPort°dONLNddÕ–ÿ%):gcontentViewPort;°dONLNdvÂñ( ¥gcontentViewPort =°dONLNdãÒ§¸–+ <GXNewViewPort(GXGetViewPortViewGroup(windowParentViewPort));
  830. °dONLNd»ñ(0¥MThe gcontentViewPort variable now contains a valid view port that we can work°dONLNdñ * Qwith. Now we’re ready to set the clip shape of this view port. The clip shape can°dONLNdh ñ,* Rbe any geometry-based shape like a rectangle, a polygon, or a path. The clip shape°dONLNdª,ñ8„* Ifor gcontentViewPort will simply be defined by the rectangle contained in°dONLNd8ñD* PviewRect, which is the portRect of the window, minus the scroll bar areas. After°dONLNdVDñPÎ* Mwe set the clip shape, we dispose of the shape because it’s no longer needed,°dONLNd§Pñ\ú* 6thereby freeing up space within the QuickDraw GX heap:    °dONLNd€iñt;*!gxRectangle contentViewPortShape;°dONLNd˝Åñåã*1contentViewPortShape = GXNewRectangle(&viewRect);°dONLNd/çñò∏* :GXSetViewPortClip(gcontentViewPort, contentViewPortShape);°dONLNdjôñ§O* %GXDisposeShape(contentViewPortShape);
  831. °dONLNdê∞ñº*NNext, we need to set the mapping of gcontentViewPort to be the default mapping°dONLNdflºñ»â* 4and attach gcontentViewPort to the parent view port:    °dONLNd’ñ‡r*,GXSetViewPortMapping(gcontentViewPort, nil);°dONLNdA·ñϬ* <GXSetViewPortParent(gcontentViewPort, windowParentViewPort);
  832. °dONLNd~¯ñ¯*INow we need to tell QuickDraw GX which view port we want the shapes to be°dONLNd»ñ * Qdrawn in. We could have all shapes drawn to both view ports, but that wouldn’t be°dONLNdñ    * Pespecially efficient. So we make the following call, which tells QuickDraw GX to°dONLNdkñ(¥* <draw all the shapes we make from now on in gcontentViewPort: uBu/ (x& +
  833. 20+ã
  834. 'QuickDraw GX uses fixed-point numbers, )öoffering(ñ¥5the advantage of speed, instead of the floating-point*
  835. numbers used by QuickDraw.)e )The )ff)  macro uses(™¥3IntToFixed to convert an integer into a fixed-point*
  836. number; another handy macro, )ifl), converts a floating)A-(æ¥(point number into a fixed-point number.•(ÚDd)e)v)e)l)o)p)  )Issue 15ˇ\◊#ˇ ˇˇˇˇ#◊ 
  837. d,
  838. Courier    .°dONLNd$—+6@%SetDefaultViewPort(gcontentViewPort);,     Helvetica°dONLNd&5@ *(ZOOMING AND RESIZING THE CHILD VIEW PORT, Palatino
  839. °dONLNdO@LÅ* NAnytime the user zooms or resizes the window, we must update the clip shape of°dONLNdûLXà* Pthe child view port we attached to the window’s parent view port. To do this, we°dONLNdÔXd* Sget the portRect of the window in a fixed-point rectangle, adjust it for the scroll°dONLNdCdpÅ* Rbars, create a new clip shape from this rectangle, and reset the clip shape of the°dONLNdñp|U* Fview port to this new clip shape. The following routine does the work:    °dONLNd›âî*2void ResetContentViewPortClip(WindowPtr theWindow)°dONLNdï†* {°dONLNd°&¨]+ gxRectangle°dONLNd°o¨ú)I    viewRect;°dONLNd*≠&∏I(‘DgxShape°dONLNd4≠o∏Ï)IcontentViewPortClipShape;°dONLNdO≈&–M(ÏD;// Get the window's portRect into the fixed-point viewRect.°dONLNdå—&‹˝* +GetFixedWindowBounds(theWindow, &viewRect);°dONLNdπÈ&Ù4*6// Adjust the viewRect to accommodate the scroll bars.°dONLNdÒı&¯* *viewRect.right -= ff(kScrollBarWidth - 1);°dONLNd& ˝* +viewRect.bottom -= ff(kScrollBarWidth - 1);°dONLNdJ&$fl*%// Create and set the new clip shape.°dONLNdq%&0/* 5contentViewPortClipShape = GXNewRectangle(&viewRect);°dONLNd®1&<\* >GXSetViewPortClip(gcontentViewPort, contentViewPortClipShape);°dONLNdË=&HÛ* )GXDisposeShape(contentViewPortClipShape);°dONLNdIT(p6}°dONLNdep*(SCROLLING THE CHILD VIEW PORT’S CONTENTS
  840. °dONLNd=p||* NWhen the user scrolls in the window, we need to reset the mapping of the child°dONLNdå|àv* Oview port before we call ScrollRect to scroll the bits in the window. That will°dONLNd‹àîÜ* Oensure that when we redraw the contents of the window on the next update event,°dONLNd,î†ä* Qall the shapes will be located in the correct window-relative position. Otherwise°dONLNd~†¨ç* Qthey would be redrawn in their old position, because the geometry of the shapes —°dONLNd–¨∏<* @which includes their position in the view port — doesn’t change.°dONLNdƒ–Ü*PThis remapping approach gives us an advantage at print time. If we didn’t adjust°dONLNdb–‹Ü* Othe mapping of the child view port, we would need to adjust the mapping of each°dONLNd≤‹Ëé* Tshape. While it’s possible to do that, we would have to do it again at print time to°dONLNdËÙz* Pensure that the shapes printed on the right page. If the page contained a lot of°dONLNdXÙ* 6shapes, that could be a very time-consuming operation.°dONLNdè *NTo update the mapping of gcontentViewPort (the child view port) to reflect the°dONLNdfi$â* Tscrolling of the window, we get its current mapping, adjust it to translate the view°dONLNd3$0B* Bport by the scroll amount, and set the mapping to the changed one. u4u& (x) +
  841. 21(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇ ◊#ˇ ˇˇˇˇ#◊ 
  842. d,
  843. Courier    .°dONLNdñ$√+¥@    gxMapping°dONLNd Ì$=)WviewPortMapping;°dONLNd1ñ<≥(X¥9GXGetViewPortMapping(gcontentViewPort, &viewPortMapping);°dONLNdW=ñH∏* :GXMoveMapping(&viewPortMapping, ff(hScroll), ff(vScroll));°dONLNdíIñT≥* 9GXSetViewPortMapping(gcontentViewPort, &viewPortMapping);,     Helvetica °dONLNdÃeñs    *-CREATING, MANIPULATING, AND DRAWING QUICKDRAW°dONLNd˙tñÇÊ*    GX SHAPES, Palatino
  844. °dONLNdÜñí *OAt this point, you’ve learned how to initialize QuickDraw GX and deal with view°dONLNdTíñû* Rports. It’s finally time to talk about creating, manipulating, and drawing shapes.°dONLNdß™ñ∂*PA shape contains all the information required to draw it. To create a shape with°dONLNd¯∂ñ¬˝* MQuickDraw GX, you simply define its geometry. Then you can draw it by calling°dONLNdF¬ñŒ* MGXDrawShape(myShape). If you haven’t specified otherwise, your shape will use°dONLNdîŒñ⁄ * Qthe default style, transform, and ink supplied by QuickDraw GX for the particular°dONLNdÊ⁄ñÊ    * Otype of shape. When you change a shape’s style, transform, or ink, QuickDraw GX°dONLNd6ÊñÚ * Gcopies a reference to the new style, transform, or ink into your shape.°dONLNd~˛ñ
  845. ˆ*OTo illustrate the process of creating, manipulating, and drawing shapes, in our°dONLNdŒ
  846. ñÛ* JQuickDraw GX shell we’ll create a typographic shape containing text. We’ll°dONLNdñ"* Poutline the text in some color and fill the inside of each letter with a pattern°dONLNdj"ñ.* Qcomposed of stars. Then we’ll create a typographic shape containing a line layout°dONLNdº.ñ:˜* Qof some text, which we’ll render in a combination of different fonts and scripts.°dONLNdFñR˜*NIn the QuickDraw GX shell we’ll use a picture, which we’ll store in the global°dONLNd]Rñ^* Kvariable gthePage, to collect all the shapes we draw to the window. Using a°dONLNd©^ñj* Spicture enables us to make just one call to GXDrawShape to draw the contents of the°dONLNd˝jñv* Owindow. We also need to set the gxUniqueItemsShape shape attribute so that each°dONLNdMvñÇ* Ntime we add a shape to the picture, QuickDraw GX will make a copy of the shape°dONLNdúÇñé¯* Oand add the copy, rather than just adding a reference to the shape. These calls°dONLNdÏéñöd* /create our picture and set the shape attribute:    °dONLNdßñ≤π*gxShape°dONLNd$ß¡≤È)+gthePage°dONLNd-øñ O(Ê¥%gthePage = GXNewShape(gxPictureType);°dONLNdSÀñ÷ï* 3GXSetShapeAttributes(gthePage, gxUniqueItemsShape);
  847. °dONLNdá‚ñÓ*OThe variable gthePage now holds an empty picture, ready to have shapes added to°dONLNd◊Óñ˙°* it.    °dONLNd€ñe*"EXAMPLE 1: A SHAPE CONTAINING TEXT
  848. °dONLNd˛ñÎ* MFirst we’ll create a shape containing text, which we’ll store in the variable°dONLNdLñ** OtempTextShape. We want the text to read “GX.” We set the text shape’s position,°dONLNdú*ñ6À* Fcreate the new shape, set the text size, and set the font to New York: uBu/ (x& +
  849. 22+pd)e)v)e)l)o)p)  )Issue 15ˇä◊#ˇ ˇˇˇˇ#◊ 
  850. d,
  851. Courier    .°dONLNd$;+6@gxPoint°dONLNd    R$˜):!textPosition = {ff(10), ff(205)};°dONLNd+%0;(L6gxShape°dONLNd4%R0ò):tempTextShape;°dONLNdC=Hq(d6EtempTextShape = GXNewText (2, (unsigned char *) "GX", &textPosition);°dONLNdâITÔ* +GXSetShapeTextSize(tempTextShape, ff(250));°dONLNdµal˛*.// This next call comes from the Font Library.°dONLNd‰mx* /SetShapeCommonFont(tempTextShape, newyorkFont);, Palatino
  852. °dONLNdÑê*4The variable tempTextShape now holds the text shape.,     Helvetica    °dONLNdIù®s*Outlining the text.›k¬¢°dONLNd\ös©v)[ 
  853. °dONLNd]úv®ä)<We said that we want to outline the text with some color and°dONLNdö®¥ã(–6Sfill the text shape with stars. The approach we’ll take to outlining our text shape°dONLNdÓ¥¿Ü* Pis to first convert it into a path shape, which requires only the GXSetShapeType°dONLNd?¿Ã-* call.°dONLNdEÿ‰Ñ*PAfter the conversion to a path shape, each character in the text shape becomes a°dONLNdñ‰z* Npath. Thus, the converted shape will contain two different paths, one for each°dONLNdÂ¸E* Dcharacter. To draw the outline of each path, we set the fill type to°dONLNd*¸ã* RgxClosedFrameFill. Then we set the pen to draw on the outside of each contour, set°dONLNd}é* Vthe pen thickness, set the color of our path to a color from the common color library,°dONLNd‘ q* Nand scale it 125% on the x-axis and 65% on the y-axis so that it will come out°dONLNd# ,z* looking short and fat.    °dONLNd:9DÍ**GXSetShapeType(tempTextShape, gxPathType);°dONLNdeEP* 1GXSetShapeFill(tempTextShape, gxClosedFrameFill);°dONLNdóQ\N* >GXSetShapeStyleAttributes(tempTextShape, gxOutsideFrameStyle);°dONLNd÷]hÃ* $GXSetShapePen(tempTextShape, ff(3));°dONLNd˚itÂ* )SetShapeCommonColor(tempTextShape, blue);°dONLNd%uÄ&* 6GXScaleShape(tempTextShape, fl(1.25), fl(0.65), 0, 0);
  854. °dONLNd\åòM*BNow we add our path shape to the picture we’ve stored in gthePage:    °dONLNdü•∞l*DGXSetPictureParts(gthePage, 0, 0, 1, &tempTextShape, nil, nil, nil);
  855. °dONLNd‰º»J*@From now on, whenever we draw gthePage, our path shape stored in°dONLNd%»‘ * 4tempTextShape will be drawn as well. (See Figure 4.)    °dONLNdZ·Ïn*Filling with stars.°dONLNdm·nÏq)V 
  856. °dONLNdn‡qÏä)@To fill our shape with stars, we start by changing the fill type°dONLNdØÏ¯Å(6Pand color of our path. Then we define the star shape and the pattern record that°dONLNd¯ä* Swill replace the style of our shape, add our new patterned path to our picture, and°dONLNdT∏* #dispose of all the unneeded shapes.°dONLNdx(í*TWe need to change the fill type of tempTextShape to solid fill because at this point°dONLNdÕ(4* Owe want to fill the contents rather than draw the outline of each path. We also°dONLNd4@    * 9want our stars to be gray, so we need to reset the color. u4u& (x) +
  857. 23(å6#Another approach to outlining text,)Ñ described in(ñ6(the article “QuickDraw GX for PostScript*
  858. 7Programmers” in this issue, involves using text faces.•(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇbL◊#ˇ ˇˇˇˇ#◊ 
  859. 6D—."6D°d
  860. ONLNfH"—.°d
  861. ONLNfvv†Ç†é
  862. 45C6Dò>@Í@Í6Dv.√√√√
  863. Ú˝ˇ¯ÿ
  864. Ù˙ˇ¸Ÿıˇˇ˝ˇ˛⁄ı¸˙ˇ‡€)ˆˇ¯ˇ˚˝ˇÄ¸?ˇˇÄ˛˝ˇ¸˛ˇ˜ˇ¿˜?¸Ùˇ˛ˆˇ¯/˜?˛˛ˇÄ˛ˇ¸˝˚ˇ‡˛˝ˇˇ¸˛!¯¸˛¸ˇ˝˝Ù8˛ˆ&¯‡˛ˇ˛ˇ˛¸˝Ù8˛Ę'˘˛˛¯˝ˇ˝˝ˇı˛˛¯¯+˘ˇÄ¸˛˝ˇ˛¯ˇ˝ˇ¯˙ˇ-˘Ä˚¸˛¸ˇ¿˙ˇˇÄ˝ˇ‡¸ˇˇˇ(˙¯˛˘˛ĸ¯˙ˇ˙¯¸ˇ¿˛%˙¿¯˘¿Ä˚~˙¯>˝¸˝&˙~˛‡˘¿˚Ä˚¯˝ˇÄ˝%˚¯˛?˜|˛¿˚¿˚‡¯˛¯¸%˚¿˛¸˜?˛¿˚˚¿¯˛ĸ#˚˛‡˜Ä¿˙x˚¿¯˛>˚#˚¸˛Ę¿¿˙>˚‡¯˛|˚#¸˛ˆ‡¿˙˚`¯˚#¸¿˛|ı¿˙¿¸p¯¿˚!¸>˝ı8¿˙‡¸8¯˙!¸x˛¿ı¿˘¸¯|˙"˝‡˛Äı¿˘x¸¯8˙!˝¿˛Ù¿˘¸¯p‡˙"˝IJ<Ùć˘¸Ģ‡Ä˙"˝˝pÙ¿`˘Ä˝¿˙¿˘ ˝|˝‡Û‡`˘¿¸˙Ģ!˝˛¿Ûp`˘‡¸x˙x˘!˛‡˛ÄÛp`¯p¸<˙˘ ˛IJÚ8`¯<¸˙‡˘˛˝Ú‡¯¸˙8̞<˝<Ú¿¯¸Ä˚p¯ ˛x˝xÚ¿¯Ä˝¿˚‡¯ ˛˝Ú«¿¯¿¸¸¿<¯ ‡˝‡ÚˇÄ˜‡¸x¸Äp¯¿˛¿Ò|ˆx¸<¸‡¯IJÄÂ<¸¸¿¯˝‰¸¸<į˝‰¸Ä˝p˜˝‰Ä˝‡˝‡<˜8˝ ‰‡¸˛¿x˜p˝„¸x˛Ä˜‡˝8„x¸<˛¿˜¿˝0„<¸˛ĘÄ˝p„¸˛8ˆ¸‡„Ä˝Äpˆ¸‡„¿˝‡‡xˆ¸¿„‡¸¿ˆ˝¿‚¸xćˆ ˝Ä‚8¸<¿ˆ˝Ä‚¸ı8˝·¸8ı8˝·Ä˝¿<ıp˝·¿˝Û‡xıp˝·‡¸Ä‡ı‡˝‡p¸¿ı‡˝‡<˙Äı¿˝ ‡˙ÙÄ˝ ‡˙<Ùò>@ÄÍ@ÄÍvD∂.Ä˝‡Ä˚xÙÄ˝‡¿˚Ù¸fl¸¿Ù¸flx¸ÄÙ¸fl<¸ÄÙ¸fl¸Û¸fl¸ÄÙ¸8flÄ˝ÄÙ¸0fl‡˝¿Ù¸0fi¸Ù¸0fix¸xÙ¸0fi<¸<Ù¸0ˆ˜ı¸Ù¸0˜˛ˇ¸¸ˇˇˆ¸Ù ¸0˜ıˇ¯ˆÄ˝Äı! ¸0˜˛¸ˇˆÄ˝¿ı ¸0˜ı ˆ¿¸‡ı ¸0˜ıˆ¿¸xı ¸0˜˜¯ˆ¿¸<ı¸0˜ˇˇ¿˙?ˇ¯ˆĸı¸0ˆˇ¸˚ˇˇı˚ı¸0Ù¿¸?‡Ù˚Ĉ¸0Ù¯¸˛Û˚¿ˆ¸8Ûx¸Ûx˙‡ˆ¸Û˝¿Û˙pˆ¸Û ˝ÄÙ‡¸<ˆ¸Û ˝ÄÙÄ~¸ˆ¸Û ˝ÛˇÄ˝ˆ¸Û ˝ÛÁ¿˝Ę¸Û˝Û<Ň˝¿˜¸Û˝Ûp¸‡˜Ä˝ Û˝Ù‡8¸p˜Ä˝Û˝Ù¿x¸<˜¿˝Û˝ÙÄ¸˜¿˝Û˝Ù‡Ä˝˜ ‡˝Û˝Ù<¿¿˝į `˝Û˝Ùx‡˝¿¯ p˝ÄÙ˝Ù˛¸‡¯!0˝ÄÙ˝ı‡<˛x¸p¯!8˝ÄÙ˝ıÄx˛<¸8¯!˝¿Ù˝ı˛¸¯ ¸¿Ù˝ı¿˛¸¯"¸‡Ù˝ı<IJÄ˝Ģ!¸pÙ˝ı˝‡˝¿˘!¸pÙ˝ˆ‡¸˝‡˘!Ä˝8Ù˝ˆ¿8¸x¸p˘!¿˝Ù˝ˆÄ¸<¸8˘!‡˝Ù˝ˆ‡¸¸˘!˝Ù˝ˆ<¿¸¸˘#p˝Ù˝ˆxĸÄ˝Ä˙#8˝Äı˝ˆ˚¿˝¿˙#˝Äı˝˜¿<˙˝‡˙"˝¿ı˝˜Äx˙x¸˙!¸‡ı˝˜˙<¸8˙"Ä˝pı˝˜‡˙¸˙"¿˝8ı˝˜8Ä˙¸˙"˛‡˝ı˝˜˘Ä˝Ä˚#˛x˝ı ˝¯‡˘¿˝¿˚#˛<˝Ĉ ˝¯¿<¯‡˝‡˚"˛˝¿ˆ ˝¯x¯x¸˚#˛IJ‡ˆ ˝¯¯<¸8˚"˛¿˝pˆ ˝¯x‡¯¸˚!˝˝<ˆ ˝¯¿¯¸˚#˝x˝ˆ ˝˘¿į¸ĸò>ÄõÍÄõÍ∂D—.$˝˝Ę ˝˘Ä˜Ä˝¿¸#˝˝‡˜˝˘?˜¿¸‡¸"˝¿˝˜˝˘¸ˆ‡¸x¸#˝˝|˜8˝˙ˆ`¸<¸"¸~˝˜p˝˙¿8ˆp¸¸%¸IJ¿¯`˝˙?˛0ˆ0¸Ä˝&¸‡˛¯‡˝x˚¸˛0ˆ8¸‡˝%¸¯˝~˘¿˝˚‡˛8ˆ0˚¯˝%˚>˝¿˙IJ‡˚˛˝ˆ˚>˝*˚IJ˙IJ¿¸˝¯‡˚IJ)˚˝˛˙?˝˚ˇÄ˝ˇ¿˙ˇÄ˚¸˛+˙˛˝‡˚¸˛¯¸?¸˚ˇ¿¸ˇ˛˙ˇˇ+˙‡˛ˇ¸‡˛‡˝ˇÄ˙¸¸¸¯ˇ¿&˙¸˝?¯˝IJ?¸‡¯¸¯ˆ‡&˘?¿˛ˇ¯ˇ˛˛¯¸˜Ä˝‡ıp$˘¯˝˝ˇ˛‡¸˜Ä˝¿ıp0¯ˇÄ˝ˇˇÄ˛ˇ˚˛?ˇˇÄ˛¸˝ˇ‡˝¯˛ˆˇ¯˚¯ˇ√˛¸ıˇ‡(˜ˇ¯¯?˛˙˛ˇ‡˝ˇ¸¸ˇˇ¿˝?˝ˇÄ˜ˇ‡˙ˇÄ~ψˇ¯˝ˇˇ‡Ÿı?˛ˇ˛ˇ¯ÿÙ¸ˇ÷Ú‘√√√òÅÍ@ÍHHˆtÄ&∞IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  865. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Í6Dv.'ÅÅÅóÅÅÅóÅÅÅóÅÅÅó3Ü)ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄÅźJî@ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÅÅ≈4ö§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§ŸħħħħħħħħħÄÅÅŒ'† ÄÄz§ÄÄz§ÄÄz§Ä¬ÄÄz§ÄÄz§ÄÄz§ÄÄÅÅ“™¶ ÄÄz§ÄÄz§ÄÄz§Ä≥    §ÄÄz§ÄÄz§Ä !ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ–§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ€&ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˚Û¨ §Ä§Ä§Ä§Ä§Ä§Ä§©    Ä§Ä§Ä§Ä§Ä§–n§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§fl^ħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħĸ©Ø    §ÄÄz§ÄÄz§Ä‚ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ‹    §ÄÄz§ÄÄz§Ä’Äz§Ä·2Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÏÄz§Ä‡z§Ä‹z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz‰ÄÄz˝_≥Äz§ÄÄz§Ä„+§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzfiz§ÄÄz§ÄÄz⁄z§ÄïÄz§·ÄÄ•z§Ä˝O∂§Ä§Ä§Ä§Ä‰ ħħħħħħ ħħħħħħfi§Ä§Ä§Ä§‹§Ä§Äñħķ§Ä§Äߧħ˝X∫z§ÄÄz§ÄÄ    z§ÄÄz§ÄÄz§◊z§ÄÄz§ÄÄzfiz§ÄÄ‹ §ÄÄz§ÄÄz§ÄÄz°§ÄÄzflÄz§ÄÄz§Äız§ÄÄz§¸xΩÄz§ÄÄz§ÄÁ
  866. §ÄÄz§ÄÄz§ÄÄœÄÄz§ÄÄz§Ä‡z§Ä‹z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§± ÄÄz§ÄÄz§ÄÄz§Ä› Äz§ÄÄz§ÄÄz§ÄÄ≈z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˚p¿§Ä§Ä§Ä§ÄÊħħħħΔ§Ä§Ä§Ä§·ħ“
  867. §Ä§Ä§Ä§Ä§Ä§º§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä‘ ħħħħħħĜ§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§˜W√§ÄÄz§ÄÄÂz§ÄÄz§ÄæÄÄz§Ä„§ÄÄçÄÄz§ÄÄ√ ÄÄz§ÄÄz§ÄÄz§Ä≈Äz§ÄÄz§ÄÄ÷    Äz§ÄÄz§ÄÄzÈJΔz§ÄÄz§Ä‰z§ÄÄz§πÄÄz§Ä‰z§…ÄÄz§ÄÄ«ÄÄz§ÄÄz∑Äz§ÄÄ‹    §ÄÄz§ÄÄz§ÄÂD»§Ä§Ä§Ä„§Ä§Ä§Äµ§Ä§Ä§Ê§Ä§»§Ä§Ä§Ä ħħ±ħćħħħħć> z§ÄÄz§‰Äz§ÄÄz∞ÄÄz§ÄÁ§Ä≈Äz§ÄÀ§ÄÄØÄÄz„Äz§ÄÄz§‹<Ãz§ÄÄz„Äz§ÄÄz≠§ÄÄz§ÄÈÄzƒÄÄz§ÄÕÄzÆz§ÄÂÄz§ÄÄÿ9Œ§Ä§Ä§„ħħĮħħÄÍħ¬§Ä§ÄŒħƧħÁħħÄ÷;—Äz§ÄÄz„Äz§Äħ§ÄÄzÎÄz¡§ÄÄz§–Äz§Øz§ÄËz§ÄÄz’8”Äz§ÄÄz‚z§Äİz§ÄÄÏ§Äø§ÄÄz–ÄÄ∞§ÄÄÈz§ÄÄz”;’ħħħ‚§Ä§Ä§üħħÌħæ§Ä§Ä§“§Ä§±ħÄΧħħ—7◊Äz§Äć§ÄÄzõÄz§Ó§Äºz§ÄÄ“Äz§≥z§ÄÏz§ÄÄzœ5ÿz§Äć§ÄÄzòÄÄzÔÄzªÄz§Ä“ÄÄz¥ÄÄÌz§ÄÄzÕ6⁄§Ä§Ä‡ħħÄñħÄħ∫§Ä§Ä“ħÄ∂ħÄÓħħÀ5€§ÄÄz‡ÄÄz§ìz§ÄÒÄz∏ÄÄz“z§Ä∏z§ÄÔ§ÄÄz§ 7›§ÄÄz§‡Äz§ÄëÄz§Ú§ÄÄ∏§ÄÄz”Äz§∫§ÄÄÔÄÄz§»4fi§Ä§Äfl§Ä§é§Ä§Ú§Ä∑§Ä§Ä”§Ä§º§Ä§Ôħħ«5‡ÄÄz§Äfl§ÄÄå§ÄÄÛÄÄ∂Äz§Ä”§ÄÄzøÄz§Ôz§Ä≈5·Äz§ÄfiÄÄzäz§ÄÙz§µÄÄz§”z§ÄÄ¡z§Äz§Äă5„ħħÄfiħÄâ§Ä§Ù§Ä≥§Ä§”ħħ√ħÄħħ√6‰z§ÄÄfiÄz§Äá§ÄÄız§≤§ÄÄz‘ÄÄz§≈ÄÄzÄÄz§¬6§ÄÄzfiz§ÄÄÖz§Ä˜§Äız§ÄÄ‘§ÄÄz«Äz§Äz§¿5Áħħ›ħħÉħįħØħħ”ħą§Ä§Òħħø6ËÄÄz§›ÄÄz§Ç§ÄÄz˘§ÄÆÄÄz§”z§ÄÀ§ÄÄÒz§ÄÄæ;ÈÄz§Ä›Äz§ÄÅz§ÄÄz˛z§ÄÄz¨ÄÄz”Äz§ÄŒÄÄzÒ§ÄÄzΩ8ͧħċħÄÅ˝    §Ä§Ä§Ä§Ä§Ä™ħĔ§Ä§Ä—§Ä§Äҧħª5ΧÄÄz‹ÄÄzÅ˙z§ÄÄz¶z§ÄÄ‘§ÄÄz”Äz§ÄÚÄÄz§∫,ÎÄz§‹Äz§ÅòÄz§Ä‘z§ÄÄ’z§ÄÄÚÄz§Äπ*ϧħ€ħÅñ§Ä§Ä”§Ä§◊ħħڧħÄ∏)̧ÄÄ€ÄÄzÅï§ÄÄz”Äz§ŸÄÄzÒ§ÄÄ∂*ÓÄÄz€Äz§Åí§ÄÄ”ÄÄz§‹Äz§Ú§ÄÄzµ+ÔħÄ⁄ħÅê§Ä§Ä‘ħħflħħڧħĥ,z§Ä⁄ÄÄzÅèÄz§Ä‘z§ÄÄ·z§ÄÄÚÄz§Ä≥+Ò§ÄÄ⁄Äz§ÅçÄÄz§‘Äz§Ä„§ÄÄzÚz§Ä±+ڧħŸħÅãħħ‘§Ä§Ä§ħÄۧħÄ∞)ÛÄz§ŸÄÄzÅâ§ÄÄ”ÄÄzÁÄz§Ú§ÄÄzØ)Û§ÄŸÄz§Åáz§ÄÄ‘§ÄÄÈz§ÄÚÄÄz§Æ,٧ħŸħÄÅÜħħ‘§Ä§Ä̧ħÄۧħĨ*Ùz§ÿÄzÅÑÄÄz§‘Äz§ÄÔ§ÄÄzÛÄz§Ä´,ı§ÄÄŸz§ÄÅɧÄÄz‘ÄÄz§ÒÄÄz§Ûz§ÄÄ™*ıħÿ§ÄÅÅħđħħÛħħÛħħ©+ˆz§ÄŸÄz§ÅÅz§Ä”§ÄÄız§ÄÛ§ÄÄzß+˜§ÄÄÿ§ÄÅÅ˝Äz§Ä‘z§Ä˜§ÄÄÛÄÄz§¶-˜ħÄÿħÅŸ§Ä§Ä‘ħħ˚ħħÛħħ•/¯z§Äÿz§ÄÅÅ˚§ÄÄz‘ ÄÄz§Ä§ÄÄz§Ûz§Äħ*¯ÄÄzÿÄÄÅÅ˘z§ÄÄ”ÄÄz§ÄÄz§Ûz§ÄÄ¢%˘ħÄ◊§ÄÅاħ“§Ä§ÄÚħħ° ˘§ÄÄÿ§ÄÄÅňÄz§Ä¬ÄÄz§†˙ÄÄz◊ÄzÅÅÙÄÄz§ƒÄz§Äü˙§Ä÷ħÅÅÛħħ«ħħùòÅÍ@ÄÍHHˆt|&±Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  868. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@ÄÍvD∂.'˙ÄÄ◊ÄÄzÅÅÚz§ÄÄ…z§ÄÄú˚Äz§◊z§ÅÅÔz§ÄÀ§ÄÄzõ˚ħ÷§ÄÅÅÓħħŒ§Ä§ô˚Äz÷z§ÅÅÌÄÄz§–Äz§ò˚§Ä÷ÄÄÅÅϧÄÄz—§ÄÄò˚ħ÷§ÄÅÅΧħēħó˚§Ä÷ÄÄÅÅÈz§Ä”§ÄÄò¸ÄÄz◊Äz§ÅÅËÄz§”z§ò¸§Ä÷ħÅÅʧħǧħô¸ÄÄ÷ÄzÅŧÄÄz’§ÄÄzõ¸z§÷§ÄÅʼnz§ÄÄ’z§ÄÄú¸§Ä÷ħÅÅ„ħħ’ħħù!¸z§÷§Ä¢Äß§úÄz§’ÄÄz§ûZ˝§ÄÄ÷Äz® ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä‘z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz†ÄÄz’§ÄÄzüÑ˝ħ’ħ©hħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħĆħđħĆU˝§Ä’Äz™z§Ä‚.ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍz§Ä†z§”z§Ä°"˝Äz’§Ä™ÄÄöÄz†ÄÄz”Äz§¢%˝ħ’ħ™§Ä§ú§Ä§†§Ä§“§Ä§Ä§-˝Äz’§Ä©Äz§ÄÄz§Ä¶ÄÄz§ÄÄüÄÄz—§ÄÄz•H˝§ÄÄ÷Äz®ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä¡Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§†Äz§œz§ÄĶD¸§Ä÷ħ¢§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§…ħħħħħħħħħú§Ä§Õħħß2¸ÄÄ÷ÄzîÄÄz§ÄÄz§Ä—Äz§ÄÄz§ÄÄê§ÄÄzÃÄÄz§®-¸z§÷§Äêz§ÄÄz§ÄÄ÷Äz§ÄÄz§çÄÄz»ÄÄz©(¸§Ä÷ħÄç§Ä§Ä÷ħħå§Ä§ÄΔħę%¸z§’ÄÄãÄÄzÿÄÄzãÄz§Äƒz§Ä´+¸ÄÄz÷z§ä§ÄŸÄz§ãz§ÄÄÒz§‘Äz§Ä≠-˚ħ÷§ÄäħŸħÄåħÄҧħħǧħį0˚Äz÷z§ä§ÄŸÄzç§ÄÄzÒ§ÄÄz§ÄÄz§÷§ÄÄzØ3˚§Ä÷ÄÄäÄzŸ§ÄéÄÄz§Ú §ÄÄz§z§ÄÄz÷z§ÄÄ∞3˚ħ÷§ÄäħÄ⁄ħèħħڧħÄ˚§Ä§Ä÷ħħ±1˚§Ä÷ÄÄzäz§⁄§Äêz§ÄÒÄz§Ä˘Äz§Ä’Äz§≤0˚Äz§÷§ÄäÄÄ⁄Äzíz§ÄÄÒz§ÄıÄz§’ÄÄz≥2˙§Ä÷ħÄã§Ä⁄ħìħħڧħÄۧħ’ħħµ3˙z§Ä◊§ÄÄãÄÄ⁄ÄzîÄÄz§Ú§ÄÄzÒ§ÄÄ’z§ÄÄ∂2˘Äz÷z§ãz§⁄§ÄïÄz§ÄÚÄÄz§Ôz§ÄÄ÷Äz§Ä∑4˘ħÄ◊§Ä§å§Ä⁄ħóħħÒħħÌħħ÷§Ä§Ä∏1¯z§÷§Äåz§⁄§Äòz§ÄÄÒz§ÄÍÄÄz§÷§ÄÄzπ3¯ÄÄz◊Äz§çÄÄ⁄Äzô§ÄÄzÚz§ÄÄ˧ÄÄz’§ÄÄ∫2˜ħ◊ħÄç§Ä⁄ħö§Ä§ÄÚħħʧħǧħª2˜Äz§◊z§çÄÄ⁄ÄzúÄÄz§ÒÄÄz§‰Äz§Ä’Äz§º2ˆÄÄ◊ÄÄzéz§⁄§ÄùÄz§ÄÒÄz§Ä·Äz§’ÄÄz§æ1ˆ§Ä§◊ħé§Ä⁄ħû§Ä§Äҧħfi§Ä§’ħħø3ıÄz§ÿÄz§èz§⁄§Äü§ÄÄzÚz§ÄÄ‹§ÄÄ’z§ÄÄ¿4ı§ÄÄ◊ÄÄzêÄÄ⁄Äz°§ÄÄzÒ§ÄÄz⁄z§ÄÄ÷Äz§Ä¡4٧ħÿ§Ä§ê§Ä⁄ħ¢§Ä§ÄҧħÄÿħħ÷§Ä§Ä¬3ÙÄÄz§ÿÄz§ëÄÄ⁄Äz£Äz§ÄÒÄz§’ÄÄz§’ÄÄz√4Û§ÄÄzÿÄÄzíz§⁄§Ä§z§ÄÄÚÄz§Ä”§ÄÄz’§Äă4ڧħğ§Ä§í§Ä⁄ħ¶§Ä§Äҧħė§Ä§Ä’§Ä§≈4ÒÄz§ÄŸÄz§ìz§⁄§Äß§ÄÄzÒ§ÄÄzŒz§Ä’Äz§Ä«3ÄÄzÿÄÄzîÄÄ⁄Äz®ÄÄz§ÒÄÄz§ÃÄz§’ÄÄz§»2ÔħÄÿħÄï§Ä⁄ħ©ħħÒħą§Ä§’ħħ…4Óz§ÄŸÄz§ïÄÄ⁄Äz´Äz§ÄÒÄz§Ä«§ÄÄz÷z§ÄÄ 4ÌÄz§ŸÄÄzñz§⁄§Ä¨z§ÄÄÒz§ÄÄ≈z§ÄÄ÷Äz§ÄÀ3ϧħŸħÄó§Ä⁄ħ≠ħħÒħħ√ħħ’ħÄÃ3ΧÄÄŸz§Äòz§⁄§ÄÆÄÄz§ÒÄÄz§¡ÄÄz§’ÄÄzÕ2Íz§ÄŸÄz§ôÄÄ⁄ÄzØÄz§Äz§æ§ÄÄz’§ÄÄzœ5Èħğ§Ä§ÄúħÄ⁄ħ±ħħÒħħªħǧħĖ5ËÄÄz§⁄§ÄÄzù§ÄŸÄz≤z§ÄÄÒz§ÄÄπz§Ä’Äz§Ä—6Á§ÄÄz⁄z§ÄÄûÄzŸ§Ä¥z§ÄÄzÒ§ÄÄz∑Äz§’ÄÄz§“7ʧħħ€ħħüħŸħµħħ§Ä§Äµ§Ä§Ä÷ħħ”5‰z§ÄÄ€ÄÄz§†ÄzŸ§Ä∂ÄÄz§Äz§Ä≥§ÄÄz’§ÄÄ‘5„Äz§Ä⁄ÄÄz°§ÄŸÄz∏ÄÄz§Ôz§Äız§ÄÄ’z§ÄÄ÷5·ħħ€ħħ£ħŸħπħħÔħħØħđħħ◊5‡ÄÄz§€z§Äħ§ÄŸÄzªÄz§ÄÓÄÄz§≠ÄÄz‘ÄÄz§ÿòÅÍÄõÍHHˆtÄ&≤IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  869. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄõÍ∂D—.'6fiÄÄz§‹Äz§ÄĶÄzŸ§ÄΩÄz§ÄÄÌz§Ä´§ÄÄ‘§ÄÄzŸ8›ħħ€ħħĩ§Ä§⁄§Ä§øħħħÌħĩ§Ä§”ħÄ⁄7‹z§ÄÄz€Äz§Ä™ÄÄŸz§¿Äz§ÄÄzÏÄÄzßÄz§”z§ÄÄ‹6⁄z§ÄÄz‹ÄÄz§Ä≠Äz§ŸÄÄ¡z§ÄÄzÍz§•ÄÄ“Äz§Ä›:ÿ§Ä§Ä§Ä›§Ä§Ä§∞§Ä§ŸħÄ√§Ä§Ä§Èħĕ§Ä§“§Ä§Äfi9÷z§ÄÄz§›ÄÄz§Ä≤ÄÄŸz§Ä≈Äz§ÄÄzÁÄz£Äz—§ÄÄz§‡>‘z§ÄÄz§›ÄÄz§ÄµÄz§€z§ÄÄ»§ÄÄz§ÄÄz§ģ§ÄÄ–§ÄÄz§‚?“§Ä§Ä§Ä›§Ä§Ä§Äπ§Ä§€ħħ §Ä§Ä§Ä§Ä‚ħħħÕħħĉ@œ§ÄÄz§›ÄÄz§ÄÄzºÄÄ€ÄÄz§ÃÄz§ÄÄz§›ÄÄz§®Äz§ÄÀ§ÄÄz§ÊIÕ§ÄÄz§‹Äz§ÄÄz¡§ÄÄz§fi§ÄÄz§ÄŒÄÄz§ÄÄzŸ§ÄÄz§ÄÄzØÄz§ÄÄ»§ÄÄz§Ë]Àħħħ›ħħħÄΔħħħ‡§Ä§Ä§Ä§—ħħħħđ Ä§Ä§Ä§Ä§Ä§Ä§æ §Ä§Ä§Ä§Ä§Ä§ÄƒħħħħÌp…§ÄÄz§ÄÄ›z§ÄÄz§ÄÄçÄÄz§Ä‡z§ÄÄz§‘ Äz§ÄÄz§ÄÄz§ÄÃz§ÄÄz§ÄÄz§ÄÄz§Äœ§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ¡ z§ÄÄz§ÄÄz§ÄÄzÛjΔÄÄz§ÄÄz§fi    §ÄÄz§ÄÄz§Ä”§ÄÄz§‡Äz§ÄÄz§÷
  870. §ÄÄz§ÄÄz§ÄÄ¡ z§ÄÄz§ÄÄz§ÄÄz÷ z§ÄÄz§ÄÄz§ÄÄz≤ z§ÄÄz§ÄÄz§ÄÄz˘T√ħħħħ›
  871. ħħħħħ§ħħćħħħ’ħħħÄ≥§Ä§Ä§Ä§Ÿħħģ§Ä§Ä§Ä§Ä˙Rø§ÄÄz§ÄÄz‹ÄÄz§ÄÄz§ÄÄz§ÄÄÓÄz§ÄÄz§ÄÄz§ÄÄz§·ÄÄz§ÄÄ“Äz§´z§ÄÄ⁄Äz§õz§Ä˚ZºÄÄz§ÄÄz§€(z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz·§ÄÄz§ÄÄ—z§Ä©Äz§⁄§ÄöÄÄz˚îπħħħħÄ÷ħħħħħħħħħħċ    Ä§Ä§Ä§Ä§Ä§Œ§Ä§Âħħħħħħħħħħħě§Ä§ŸħħÏ)§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä‹ħħ˚͵
  872. §ÄÄz§ÄÄz§ÄÄ® §ÄÄz§ÄÄz§ÄÄz§ M§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˝Äz§ÄÄz§ÄÄ◊iÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ˙∞± Äz§ÄÄz§ÄÄz§ÄÄ¥ §ÄÄz§ÄÄz§ÄÄz§√z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ï%Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz‘ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzŸ&§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Äį/´ ħħħħħħĿ ħħħħħħÄÅҧħħÄÅfi1•Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄ◊ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÅŬLüÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz˛!z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Åź5ï+ħħħħħħħħħħħħħħħħħħħħħħÅÅØÇz§ÄÄzÅÅõÅÅÅóÅÅÅóÅÅÅó†è†É†ø
  873. d,     Helvetica    .°dONLNd¿ñÀæ+¥ÁFigure 4°dONLNd    Ãñ◊!* !The Path Shape Outlining Our Text,
  874. Courier°dONLNd+Íñım*+GXSetShapeFill(tempTextShape, gxSolidFill);°dONLNdWˆñ|* .SetShapeCommonColor(tempTextShape, cold_grey);, Palatino
  875. °dONLNdÜñ    *RWe define the star as a polygon shape containing one contour and five points, with°dONLNdŸñ%Ï* Kthe default fill of evenOdd (which results in a star with a hollow pentagon°dONLNd%%ñ1h* 0inside), and we scale it by 15% to make it tiny:    °dONLNdV>ñIπ*gxShape°dONLNd^>¡IÛ)+
  876. starShape;°dONLNdiJñUØ(q¥long °dONLNdoJ¡U*)+starGeometry[] = {1, °dONLNdÖJ5UÄ)t// One contour.°dONLNdûVa'(}6 5,°dONLNd¢V5aÈ)$// Five points defining the polygon.°dONLNd b¡mΔ(âfl °dONLNd—bm÷)W& ff(60), 0, ff(90), ff(90), 0, ff(30),°dONLNdny©*  ff(120), ff(30), 0, ff(90)};°dONLNd Üñë©(≠¥7starShape = GXNewPolygons((gxPolygons *) starGeometry);°dONLNdXíñùê* 2GXScaleShape(starShape, fl(0.15), fl(0.15), 0, 0);
  877. °dONLNdã©ñµ*SThe pattern record contains the shape to be used as the pattern, two vectors (u and°dONLNdflµñ¡* Tv) that describe how to tile the pattern, and the pattern attribute. (See Figure 5.)°dONLNd4¡ñÕ* UWe’ll attach this record to the style of our path shape, replacing the default style.
  878. ˝´$ı"˝´°d
  879. ONLNfH"$ı°d
  880. ONLNfb$†Ç†é4¸™˝´ò
  881. 'J'J˝´$ı˜˜˜˛˚˛˚˛˚˛˚˛˚˜˜    ˝¿<    ˝ ˇˇ¯˛ˇÄ     @Ù     @Ñ8    @˝    @˝    @˝    @Ä˝    @¿˝    @¿˝    D@‡˝    (CˇˇÙ˝    (C¯?Ù˝    (A¯‰˝    @ƒ˝    @`˝    @p˝    @¸<˝    @ˇ¸˝    Aˇ¸˝    S¸~˝    Û>˝    ˜¿˝    ˆ˝    ‡˝    ‡˝    @˝˜òÄJ'JHHˆt|&≥IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  882. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê'J˝´$ı'∑∑∑Êˇˇ’Êˇˇ’Ê˛ˇ’Êˇˇ’Ê˛ˇ’∑∑€˝ˇÈÄÄyy˝⁄¸ˇÍUÄzzUˇ!ÓÁˇ˛yÄzÄyÄzÄyÄzÄyÄzÄyÄzÄyÄzÄyˇÏ¸ˇÄÏyÄÄyyˇˇÌ˛ˇ˝UÌÄzz¸
  883. ˇÊÄÂ
  884. ˇÊyÂ
  885. ˇÊzÂˇÙˇˇıÄÂˇÙ˛ˇˆÄÂˇı˝ˇˆU¯ˇ˛ˇ˛ˇˆ˚ˇ˜Ä˜ˇˇ˝ˇ˝Îˇy˜ˇˇ˝ˇ˝˙ˇ¸˜ˇz˜ˇˇ˝ˇ¸˚ˇ˚˘ˇÄˆˇ¸ˇ˚˝ˇ˙˙ˇ˛ÄÂˇ˙ˇˇ¯˝ˇ¸UÂˇ˙˛ˇ˘˛ˇ˚ÄÂˇ˚˚ˇ˝˝ˇ˙yÂˇ˚Ûˇ˙zÂˇ¸Úˇ˙ÄÂÚˇˇˇ˘ˇ˛˚ˇ˝yÄyÁÚ¸ˇ˚ˇ˚¸ˇ˝zzUÄzÁÚ¸ˇ¸ˇ˜˛ˇ˝ÄzÄyÄÁÒ˝ˇˇˇÛˇˇ¸yyÄÊ Ò˛ˇËÄzzÊ Ò˛ˇËyÄzÊ
  886. ˇÊÄÂ∑†è†É†ø
  887. d    °dONLNdãñæ*QFigure 5°dONLNdîñ*ı* Making the Star Pattern uBu/ (x& +
  888. 24+pd)e)v)e)l)o)p)  )Issue 15ˇ†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ -27 384 463 539]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2%%For: (Diane Wilcox) (Apple Computer, Inc.)%%Title: (Alexander_Fig 04 v.4)%%CreationDate: (6/24/93) (10:39 AM)%%BoundingBox: -27 384 463 539%%DocumentProcessColors:%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_pattern_AI3 1.0 0%%+ procset Adobe_Illustrator_AI3 1.0 1%AI3_ColorUsage: Color%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: -27 375 462 546%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_pattern_AI3 1.0 0%%Title: (Adobe Illustrator (R) Version 3.0 Pattern Operators)%%Version: 1.0 %%CreationDate: (7/21/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_pattern_AI3 16 dict dup begin put/initialize            % - initialize -{/definepattern where    {    pop    }    {    Adobe_pattern_AI3 begin    Adobe_pattern_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    mark    cachestatus 7 1 roll pop pop pop pop exch pop exch        {        {        10000 add        dup 2 index gt            {            break            } if        dup setcachelimit        } loop        } stopped    cleartomark    } ifelse} def/terminate            % - terminate -{currentdict Adobe_pattern_AI3 eq    {    end    } if} deferrordict/nocurrentpoint        % operator nocurrentpoint -{popstop} puterrordict/invalidaccess        % operator invalidaccess -{popstop} put/patternencoding256 array def0 1 255{patternencoding exch ( ) 2 copy exch 0 exch put cvn put} for/definepattern        % width height matrix procarray key cache uniform definepattern font{17 dict begin/uniform exch def/cache exch def/key exch def/procarray exch def/mtx exch matrix invertmatrix def/height exch def/width exch def/ctm matrix currentmatrix def/ptm matrix def/str 32 string def/slice 9 dict defslice /s 1 putslice /q 256 procarray length div sqrt floor cvi putslice /b 0 put/FontBBox [0 0 0 0] def/FontMatrix mtx matrix copy def/Encoding patternencoding def/FontType 3 def/BuildChar        % dict char BuildChar -    {    exch    begin    slice begin    dup q dup mul mod s idiv /i exch def    dup q dup mul mod s mod /j exch def    q dup mul idiv procarray exch get    /xl j width s div mul def    /xg j 1 add width s div mul def    /yl i height s div mul def    /yg i 1 add height s div mul def    uniform        {        1 1        }        {        width 0 dtransform        dup mul exch dup mul add sqrt dup 1 add exch div        0 height dtransform        dup mul exch dup mul add sqrt dup 1 add exch div        } ifelse    width 0 cache        {        xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul        setcachedevice        }        {        setcharwidth        } ifelse    gsave    scale    newpath    xl yl moveto    xg yl lineto    xg yg lineto    xl yg lineto    closepath    clip    newpath    end    end    exec    grestore    } defkey currentdict definefontend} def/patterncachesize    % - patterncachesize bits{gsavenewpath0 0 movetowidth 0 linetowidth height lineto0 height linetoclosepathpatternmatrix setmatrixpathbboxexch ceiling 4 -1 roll floor sub 3 1 rollceiling exch floor submul 1 addgrestore} def/patterncachelimit    % - patterncachelimit bits{cachestatus 7 1 roll 6 npop 8 mul} def/patternpath        % index font matrix patternpath -{exch dup begin setfontctm setmatrixconcatslice exch /b exch slice /q get dup mul mul putFontMatrix concatuniform    {    width 0 dtransform round width div exch round width div exch    0 height dtransform round height div exch height div exch    0 0 transform round exch round exch    ptm astore setmatrix    }    {    ptm currentmatrix pop    } ifelse{currentpoint} stopped not    {    2 npop    pathbbox    true    4 index 3 index eq    4 index 3 index eq    and        {        pop false            {            {2 npop}            {3 npop true}            {7 npop true}            {pop true}            pathforall            } stopped            {            5 npop true            } if        } if        {        height div ceiling height mul 4 1 roll        width div ceiling width mul 4 1 roll        height div floor height mul 4 1 roll        width div floor width mul 4 1 roll        2 index sub height div ceiling cvi exch        3 index sub width div ceiling cvi exch        4 2 roll moveto        FontMatrix mtx invertmatrix        dup dup 4 get exch 5 get rmoveto        ptm ptm concatmatrix pop        slice /s        patterncachesize patterncachelimit div ceiling sqrt ceiling cvi        dup slice /q get gt            {            pop slice /q get            } if        put        0 1 slice /s get dup mul 1 sub            {            slice /b get add            gsave            0 1 str length 1 sub                {                °¿ str exch 2 index put                } for            pop            dup                {                gsave                ptm setmatrix                1 index str length idiv {str show} repeat                1 index str length mod str exch 0 exch getinterval show                grestore                0 height rmoveto                } repeat            grestore            } for        2 npop        }        {        4 npop        } ifelse    } ifend} def/patternclip        % - patternclip -{clip} def/patternstrokepath    % - patternstrokepath -{strokepath} def/patternmatrix        % - patternmatrix matrixmatrix def/patternfill        % index font patternfill -                    % index font matrix patternfill -{dup type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get    } ifgsavepatternclipAdobe_pattern_AI3 /patternpath get execgrestorenewpath} def/patternstroke        % index font patternstroke -                    % index font matrix patternstroke -{dup type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get    } ifgsavepatternstrokepathtrue    {        {            {            newpath             moveto            }            {            lineto            }            {            curveto            }            {            closepath            3 copy            Adobe_pattern_AI3 /patternfill get exec            } pathforall        3 npop        } stopped            {            5 npop            patternclip            Adobe_pattern_AI3 /patternfill get exec            } if    }    {    patternclip    Adobe_pattern_AI3 /patternfill get exec    } ifelsegrestorenewpath} def/patternashow        % index font ax ay string patternashow -                    % index font matrix ax ay string patternashow -{3 index type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get 4 1 roll    } if    {    2 npop (0) exch    2 copy 0 exch put pop    gsave    false charpath currentpoint    6 index 6 index 6 index    Adobe_pattern_AI3 /patternfill get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow5 npop} def/patternawidthshow        % index font cx cy char ax ay string patternawidthshow -                        % index font matrix cx cy char ax ay string patternawidthshow -{6 index type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get 7 1 roll    } if    {    2 npop (0) exch    2 copy 0 exch put     gsave    _sp eq {5 index 5 index rmoveto} if    false charpath currentpoint    9 index 9 index 9 index    Adobe_pattern_AI3 /patternfill get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow8 npop} def/patternashowstroke    % index font ax ay string matrix patternashowstroke                    % index font matrix ax ay string matrix patternashowstroke{4 index type /dicttype eq    {    patternmatrix /patternmatrix get 5 1 roll    } if4 1 roll    {    2 npop (0) exch    2 copy 0 exch put pop    gsave    false charpath    currentpoint    4 index setmatrix    7 index 7 index 7 index    Adobe_pattern_AI3 /patternstroke get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow6 npop} def/patternawidthshowstroke    % index font cx cy char ax ay string matrix patternashowstroke                    % index font matrix cx cy char ax ay string matrix patternashowstroke{7 index type /dicttype eq    {    patternmatrix /patternmatrix get 8 1 roll    } if7 1 roll    {    2 npop (0) exch    2 copy 0 exch put    gsave    _sp eq {5 index 5 index rmoveto} if    false charpath currentpoint    7 index setmatrix    10 index 10 index 10 index    Adobe_pattern_AI3 /patternstroke get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow9 npop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_Illustrator_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Full Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_Illustrator_AI3 71 dict dup begin put% initialization/initialize                % - initialize -{% 56 vars, but leave slack of 10 entries for custom Postscript fragmentsuserdict /Adobe_Illustrator_AI3_vars 66 dict dup begin put% paint operands/_lp /none def/_pf {} def        % paint fill/_ps {} def        % paint stroke/_psf {} def    % paint string fill/_pss {} def    % paint string stroke/_pjsf {} def    % paint justified string fill/_pjss {} def    % paint justified string stroke/_pola 0 def/_doClip 0 def% paint operators/cf    currentflat def    % - cf flatness% typography operands/_tm matrix def/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def /_renderEnd [null null null null /i1 /i1 /i1 /i1] def/_render -1 def/_rise 0 def/_ax 0 def            % x character spacing    (_ax, _ay, _cx, _cy follows awidthshow naming convention)/_ay 0 def            % y character spacing/_cx 0 def            % x word spacing/_cy 0 def            % y word spacing/_leading [0 0] def/_ctm matrix def/_mtx matrix def/_sp 16#020 def/_hyphen (-) def/_fScl 0 def/_cnt 0 def/_hs 1 def/_nativeEncoding 0 def/_useNativeEncoding 0 def/_tempEncode 0 def/_pntr 0 def/_tDict 2 dict def% typography operators/Tx {} def/Tj {} def% compound path operators/CRender {} def% printing/_AI3_savepage {} def% color operands/_gf null def/_cf 4 array def/_if null def/_of false def/_fc {} def/_gs null def/_cs 4 array def/_is null def/_os false def/_sc {} def% pattern operands/_pd 1 dict def/_ed 15 dict def/_pm matrix def/_fm null def/_fd null def/_fdd null def/_sm null def/_sd null def/_sdd null def/_i null defAdobe_Illustrator_AI3 beginAdobe_Illustrator_AI3 dup /nc get begin    {    dup xcheck        {        bind        } if    pop pop    } forallendendendAdobe_Illustrator_AI3 beginAdobe_Illustrator_AI3_vars beginnewpath} def/terminate                % - terminate -{endend} def% definition operators/_                    % - _ nullnull def/ddef                % key value ddef -{Adobe_Illustrator_AI3_vars 3 1 roll put} def/xput                % key value literal xput -{dup load dup length exch maxlength eq    {    dup dup load dup    length 2 mul dict copy def    } ifload begin def end} def/npop                % integer npop -{    {    pop    } repeat} def% marking operators/sw                    % ax ay string sw x y{dup length exch stringwidthexch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add} def/swj                % cx cy fillchar ax ay string swj x y{dup 4 1 rolldup length exch stringwidth exch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add 6 2 roll /_cnt 0 ddef{1 index eq {/_cnt _cnt 1 add ddef} if} forall popexch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop} def/ss                    % ax ay string matrix ss -{4 1 roll    {                % matrix ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put pop    gsave    false charpath currentpoint    4 index setmatrix    stroke    grestore    moveto    2 copy rmoveto    } exch cshow3 npop} def/jss                % cx cy fillchar ax ay string matrix jss -{4 1 roll    {                % cx cy fillchar matrix ax ay char 0 0 {proc} -       2 npop     (0) exch 2 copy 0 exch put     gsave    _sp eq         {        exch 6 index 6 index 6 index 5 -1 roll widthshow          currentpoint        }        {        false charpath currentpoint        4 index setmatrix stroke        }ifelse    grestore    moveto    2 copy rmoveto    } exch cshow6 npop} def% path operators/sp                    % ax ay string sp -{    {    2 npop (0) exch    2 copy 0 exch put pop    false charpath    2 copy rmoveto    } exch cshow2 npop} def/jsp                    % cx cy fillchar ax ay string jsp -{    {                    % cx cy fillchar ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put     _sp eq         {        exch 5 index 5 index 5 index 5 -1 roll widthshow          }        {        false charpath        }ifelse    2 copy rmoveto    } exch cshow5 npop} def% path construction operators/pl                    % x y pl x y{transform0.25 sub round 0.25 add exch0.25 sub round 0.25 add exchitransform} def/setstrokeadjust where    {    pop true setstrokeadjust    /c                % x1 y1 x2 y2 x3 y3 c -    {    curveto    } def    /C    /c load def    /v                % x2 y2 x3 y3 v -    {    currentpoint 6 2 roll curveto    } def    /V    /v load def    /y                % x1 y1 x2 y2 y -    {    2 copy curveto    } def    /Y    /y load def    /l                % x y l -    {    lineto    } def    /L    /l load def    /m                % x y m -    {    moveto    } def    }    {    /c    {    pl curveto    } def    /C    /c load def    /v    {    currentpoint 6 2 roll pl curveto    } def    /V    /v load def    /y    {    pl 2 copy curveto    } def    /Y    /y load def    /l    {    pl lineto    } def    /L    /l load def    /m    {    pl moveto    } def    } ifelse% graphic state operators/d                    % array phase d -{setdash} def/cf    {} def            % - cf flatness/i                    % flatness i -{dup 0 eq    {    pop cf    } ifsetflat} def/j                    % linejoin j -{setlinejoin} def/J                    % linecap J -{setlinecap} def/M                    % miterlimit M -{setmiterlimit} def/w                    % linewidth w -{°¿ setlinewidth} def% path painting operators/H                    % - H -{} def/h                    % - h -{closepath} def/N                    % - N -{_pola 0 eq     {    _doClip 1 eq {clip /_doClip 0 ddef} if     newpath    }     {    /CRender {N} ddef    }ifelse} def/n                    % - n -{N} def/F                    % - F -{_pola 0 eq     {    _doClip 1 eq         {        gsave _pf grestore clip newpath /_lp /none ddef _fc         /_doClip 0 ddef        }        {        _pf        }ifelse    }     {    /CRender {F} ddef    }ifelse} def/f                    % - f -{closepathF} def/S                    % - S -{_pola 0 eq     {    _doClip 1 eq         {        gsave _ps grestore clip newpath /_lp /none ddef _sc         /_doClip 0 ddef        }        {        _ps        }ifelse    }     {    /CRender {S} ddef    }ifelse} def/s                    % - s -{closepathS} def/B                    % - B -{_pola 0 eq     {    _doClip 1 eq     % F clears _doClip    gsave F grestore         {        gsave S grestore clip newpath /_lp /none ddef _sc        /_doClip 0 ddef        }         {        S        }ifelse    }    {    /CRender {B} ddef    }ifelse} def/b                    % - b -{closepathB} def/W                    % - W -{/_doClip 1 ddef} def/*                    % - [string] * -{count 0 ne     {    dup type (stringtype) eq {pop} if    } if _pola 0 eq {newpath} if} def% group operators/u                    % - u -{} def/U                    % - U -{} def/q                    % - q -{_pola 0 eq {gsave} if} def/Q                    % - Q -{_pola 0 eq {grestore} if} def/*u                    % - *u -{_pola 1 add /_pola exch ddef} def/*U                    % - *U -{_pola 1 sub /_pola exch ddef _pola 0 eq {CRender} if} def/D                    % polarized D -{pop} def/*w                    % - *w -{} def/*W                    % - *W -{} def% place operators/`                    % matrix llx lly urx ury string ` -{/_i save ddef6 1 roll 4 npopconcat popuserdict begin/showpage {} def0 setgray0 setlinecap1 setlinewidth0 setlinejoin10 setmiterlimit[] 0 setdashnewpath0 setgrayfalse setoverprint} def/~                    % - ~ -{end_i restore} def% pattern operators/@                    % - @ -{} def/&                    % - & -{} def% color operators/O                    % flag O -{0 ne/_of exch ddef/_lp /none ddef} def/R                    % flag R -{0 ne/_os exch ddef/_lp /none ddef} def/g                    % gray g -{/_gf exch ddef/_fc{_lp /fill ne    {    _of setoverprint    _gf setgray    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/G                    % gray G -{/_gs exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _gs setgray    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/k                    % cyan magenta yellow black k -{_cf astore pop/_fc{_lp /fill ne    {    _of setoverprint    _cf aload pop setcmykcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/K                    % cyan magenta yellow black K -{_cs astore pop/_sc{_lp /stroke ne    {    _os setoverprint    _cs aload pop setcmykcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/x                    % cyan magenta yellow black name gray x -{/_gf exch ddeffindcmykcustomcolor/_if exch ddef/_fc{_lp /fill ne    {    _of setoverprint    _if _gf 1 exch sub setcustomcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/X                    % cyan magenta yellow black name gray X -{/_gs exch ddeffindcmykcustomcolor/_is exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _is _gs 1 exch sub setcustomcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def% pattern operators/dp                    % width height matrix proc key cache uniform dp [index key]                    % null dp -{dup null eq{pop_dp 0 ne    {    0 1 _dp 1 sub _dl mod        {        _da exch get 3 get        } for    _dp 1 sub _dl mod 1 add packedarray    _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll    definepattern pop    } if}{_dp 0 ne _dp _dl mod 0 eq and    {    null dp    } if7 packedarray _da exch _dp _dl mod exch put_dp _dl mod _da 0 get 4 get 2 packedarray/_dp _dp 1 add def} ifelse} def/E                    % name llx lly urx ury desc E -{_ed begindup 0 get type /arraytype ne    {    0        {        dup 1 add index type /arraytype eq            {            1 add            }            {            exit            } ifelse        } loop    array astore    } if/_dd exch def/_ury exch def/_urx exch def/_lly exch def/_llx exch def/_n exch def/_y 0 def/_dl 4 def/_dp 0 def/_da _dl array def0 1 _dd length 1 sub    {    /_d exch _dd exch get def    0 2 _d length 2 sub        {        /_x exch def        /_c _d _x get _ ne def        /_r _d _x 1 add get cvlit def        _r _ ne            {            _urx _llx sub _ury _lly sub [1 0 0 1 0 0]                 [                /save cvx                _llx neg _lly neg /translate cvx                _c                    {                    nc /begin cvx                    } if                _r dup type /stringtype eq                    {                    cvx                    }                    {                    {exec} /forall cvx                    } ifelse                _c                    {                    /end cvx                    } if                /restore cvx                ] cvx            /_fn 12 _n length add string def            _y _fn cvs pop            /_y _y 1 add def            _fn 12 _n putinterval            _fn _c false dp            _d exch _x 1 add exch put            } if        } for    } fornull dp_n _dd /_pdend xput} def/fc{_fm dup concatmatrix pop} def/p                    % name px py sx sy a rf r k ka matrix p -{/_fm exch ddef9 -2 roll _pm translate fc7 -2 roll _pm scale fc5 -1 roll _pm rotate fc4 -2 roll exch 0 ne    {    dup _pm rotate fc    1 -1 _pm scale fc    neg _pm rotate fc    }    {    pop    } ifelsedup _pm rotate fcexch dup sin exch cos div 1 0 0 1 0 6 2 roll_pm astore fcneg _pm rotate fc_pd exch get /_fdd exch ddef/_pf{save/_doClip 0 ddef0 1 _fdd length 1 sub    {    /_fd exch _fdd exch get ddef    _fd    0 2 _fd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _fc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _fm            patternfill            }            {            pop            fill            } ifelse        grestore        pop        } for    pop    } forrestorenewpath} ddef/_psf        % ax ay string _psf -{save/_doClip 0 ddef0 1 _fdd length 1 sub    {    /_fd exch _fdd exch get ddef    _fd    0 2 _fd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _fc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _fm            9 copy 6 npop patternashow            }            {            pop            6 copy 3 npop ashow            } ifelse        grestore        pop        } for    pop    } forrestore%3 npop newpathsw rmoveto} ddef/_pjsf        % cx cy char ax ay string _pjsf{save/_doClip 0 ddef0 1 _fdd length 1 sub    {    /_fd exch _fdd exch get ddef    _fd    0 2 _fd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _fc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _fm            12 copy 6 npop patternawidthshow            }            {            pop 9 copy 3 npop awidthshow            } ifelse        grestore        pop        } for    pop    } forrestoreswj rmoveto} ddef/_lp /none ddef} def/sc{_sm dup concatmatrix pop} def/P                    % name px py sx sy a rf r k ka matrix P -{/_sm exch ddef9 -2 roll _pm translate sc7 -2 roll _pm scale sc5 -1 roll _pm rotate sc4 -2 roll exch 0 ne    {    dup _pm rotate sc    1 -1 _pm scale sc    neg _pm rotate sc    }    {    pop    } ifelsedup _pm rotate scexch dup sin exch cos div 1 0 0 1 0 6 2 roll_pm astore scneg _pm rotate sc_pd exch get /_sdd exch ddef/_ps{save/_doClip 0 ddef0 1 _sdd length 1 sub    {    /_sd exch _sdd exch get ddef    _sd    0 2 _sd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _sc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _sm            patternstroke            }            {            pop stroke            } ifelse        grestore        pop        } for    pop    } forrestorenewpath} ddef/_pss{save/_doClip 0 ddef0 1 _sdd length 1 sub    {    /_sd exch _sdd exch get ddef    _sd    0 2 _sd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _sc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _sm            10 copy 6 npop patternashowstroke            }            {            pop 7 copy 3 npop ss            } ifelse        grestore        pop        } for    pop    } forrestorepop sw rmoveto} ddef/_pjss{save/_doClip 0 ddef0 1 _sdd length 1 sub    {    /_sd exch _sdd exch get ddef    _sd    0 2 _sd length 2 sub        {        gsave        2 copy get dup _ ne            {            cvx exec _sc            }            {            pop            } ifelse        2 copy 1 add get dup _ ne            {            aload pop findfont _sm            13 copy 6 npop patternawidthshowstroke            }            {            pop 10 copy°¿ 3 npop jss            } ifelse        grestore        pop        } for    pop    } forrestorepop swj rmoveto} ddef/_lp /none ddef} def% locked object operator/A                    % value A -{pop} def% null color operators/nc 3 dict defnc begin/setgray            % gray setgray -{pop} bind def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{4 npop} bind def/setcustomcolor        % object tint setcustomcolor -{2 npop} bind defcurrentdict readonly pop endcurrentdict readonly pop endsetpacking% annotate page operator/annotatepage{} def%%EndResource%%EndProlog%%BeginSetupAdobe_cmykcolor /initialize get execAdobe_cshow /initialize get execAdobe_customcolor /initialize get execAdobe_pattern_AI3 /initialize get execAdobe_Illustrator_AI3 /initialize get exec%AI3_BeginPattern: (star)(star) 1 1 23.8125 17.9375 [%AI3_Tile(0 O 0 R 1 0.5 0 0 k 1 0.5 0 0 K) @(0 i 0 J 0 j 1 w 4 M []0 d%AI3_Note:0 D8.9375 13 m12.4375 17.9375 l14.875 13 l8.9375 13 lf14.875 13 m16.9375 7.875 l23.8125 13 l14.875 13 lf8.9375 13 m6 8.9375 l1.9375 13 l8.9375 13 lf6 8.9375 m1 1 l11.4375 6.0625 l6 8.9375 lf16.9375 7.875 m18.875 1 l11.4375 6.0625 l16.9375 7.875 lf) &] E%AI3_EndPattern%%EndSetup0 Au*u0 R1 0.51 0 0.305 (PANTONE 541 CV) 0.4 X0 i 0 J 0 j 1.5 w 4 M []0 d%AI3_Note:0 D146.5421 444.4387 m146.5421 451.8809 145.6666 453.4131 133.8467 454.7264 c121.589 456.0397 112.8335 454.5075 112.8335 458.4475 c112.8335 460.4175 115.4601 461.5119 120.2757 461.5119 c125.9667 461.5119 140.8511 459.7608 165.8042 459.7608 c193.8218 459.7608 207.8306 461.5119 211.7706 461.5119 c215.7105 461.5119 218.3372 460.4175 218.3372 458.6664 c218.3372 454.5075 210.0195 455.8209 199.9506 454.7264 c189.4441 453.632 188.1307 451.8809 188.1307 444.4387 c188.1307 411.1678 L188.1307 397.5968 148.731 388.4036 102.3269 388.4036 c29.6563 388.4036 -22.0011 417.9533 -22.0011 458.6664 c-22.0011 502.4439 35.3474 534.4014 113.7091 534.4014 c145.2288 534.4014 171.4953 529.5859 177.6242 526.3026 c181.5641 524.3326 182.8775 517.3282 182.8775 505.0705 c182.8775 500.9117 181.1263 498.9417 177.1864 498.9417 c171.0575 498.9417 169.7442 503.3194 164.9287 509.2294 c154.8599 521.9248 136.9111 528.4915 111.0824 528.4915 c60.7383 528.4915 23.5275 500.9117 23.5275 459.1042 c23.5275 420.1422 62.0516 394.7513 108.8935 394.7513 c142.6022 394.7513 146.5421 404.8201 146.5421 418.61 C146.5421 444.4387 ls*U*u341.5836 480.774 m343.3347 479.2418 344.648 478.5852 345.9613 478.5852 c347.2746 478.5852 348.588 479.2418 350.3391 480.774 c373.9789 500.9117 L383.6099 509.2294 387.9877 515.796 387.9877 517.766 c387.9877 526.7404 362.5968 522.1437 362.5968 527.6159 c362.5968 529.367 365.2234 530.4614 370.0389 530.4614 c372.2278 530.4614 385.7988 529.1481 414.6919 529.1481 c431.7652 529.1481 443.5851 530.2425 450.1517 530.2425 c455.405 530.2425 458.0316 529.5859 458.0316 527.6159 c458.0316 523.457 447.9628 524.3326 439.6451 523.6759 c428.7007 523.0193 415.1297 518.2037 405.9364 510.9805 c357.7812 472.6752 L356.0301 471.3619 355.5924 470.4863 355.5924 469.8297 c355.5924 468.7352 356.4679 467.6408 357.7812 466.3274 c412.9409 417.5156 L423.0097 408.5412 430.4518 402.4123 437.4562 400.2235 c445.774 397.5968 456.2805 399.129 456.2805 395.6268 c456.2805 393.8757 452.7783 392.5624 446.2117 392.5624 c438.7695 392.5624 422.5719 394.0946 396.7432 394.0946 c372.6656 394.0946 359.0946 393.0002 356.0301 393.0002 c351.2146 393.0002 349.4635 393.8757 349.4635 395.8457 c349.4635 397.8157 352.5279 398.9102 356.4679 398.9102 c369.1634 398.9102 376.6056 400.8801 376.6056 404.6012 c376.6056 406.5712 373.9789 409.6356 369.1634 414.2323 c332.8281 446.6276 L331.5148 447.9409 330.2014 448.5976 328.8881 448.5976 c328.0126 448.5976 327.137 447.9409 325.3859 446.6276 c289.4884 417.0778 L282.484 411.1678 279.8574 406.3523 279.8574 404.8201 c279.8574 397.8157 308.7505 400.8801 308.7505 395.6268 c308.7505 393.438 304.8105 392.3435 298.2439 392.3435 c289.0506 392.3435 276.3552 393.8757 260.5953 393.8757 c243.0843 393.8757 230.3888 392.7813 223.8222 392.7813 c219.0067 392.7813 217.2556 393.438 217.2556 395.408 c217.2556 401.3179 241.7709 394.7513 270.2263 417.7345 c315.7549 454.2886 L317.0682 455.3831 317.9437 456.4775 317.9437 457.7908 c317.9437 458.8853 317.506 459.9797 316.1927 461.0742 c253.5909 513.826 L246.5865 519.5171 240.0198 523.0193 233.4532 524.1137 c226.8866 525.2082 217.2556 524.1137 217.2556 526.9592 c217.2556 528.9292 220.7578 530.4614 226.4488 530.4614 c236.9554 530.4614 252.7153 528.7103 275.4796 528.7103 c301.3083 528.7103 316.6304 530.0237 321.4459 530.0237 c326.6992 530.0237 328.8881 529.1481 328.8881 527.1781 c328.8881 521.0493 301.7461 526.0837 301.7461 518.4226 c301.7461 516.4526 303.935 513.3882 309.1882 508.7916 C341.5836 480.774 ls*UU%AI3_BeginCropsuserdict /AI3_noCropMarks known not {uu0 G0.5 w-36 375 m-63 375 LS-27 366 m-27 339 LSUu-36 546 m-63 546 LS-27 555 m-27 582 LSUu471 546 m498 546 LS462 555 m462 582 LSUu471 375 m498 375 LS462 366 m462 339 LSUU} if%AI3_EndCrops%%PageTrailergsave annotatepage grestore showpage%%TrailerAdobe_Illustrator_AI3 /terminate get execAdobe_pattern_AI3 /terminate get execAdobe_customcolor /terminate get execAdobe_cshow /terminate get execAdobe_cmykcolor /terminate get execAdobe_packedarray /terminate get exec%%EOF†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ 192 431 266 470]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2%%For: (Diane Wilcox) (Apple Computer, Inc.)%%Title: (Alexander_Fig 05 v.4)%%CreationDate: (6/24/93) (10:35 AM)%%BoundingBox: 192 431 266 470%%DocumentProcessColors: Black%%DocumentFonts: Helvetica%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_typography_AI3 1.0 1%%+ procset Adobe_IllustratorA_AI3 1.0 1%AI3_ColorUsage: Color%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: 194 422 268 474%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_typography_AI3 1.1 0%%Title: (Typography Operators)%%Version: 1.0 %%CreationDate:(5/31/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_typography_AI3 47 dict dup begin put/initialize            % - initialize -{/TZ where    {    pop    }    {    Adobe_typography_AI3 begin    Adobe_typography_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_typography_AI3 begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_typography_AI3 eq    {    end    } if} def% [ number value stream [ array for encoding modification ] modifyEncoding ==> [ modified array ]/modifyEncoding{    /_tempEncode exch ddef        % pointer for sequential encodings    /_pntr 0 ddef        {        % get bottom object        counttomark -1 roll        % is it a mark ?        dup type dup /marktype eq                 {            % exit            pop pop exit        }        {            % ... object ... type ....            % insert if a nametype            /nametype eq            {                % insert the name at _pntr and increment pointer                _tempEncode /_pntr dup load dup 3 1 roll 1 add ddef 3 -1 roll                put            }            {                % reset _pntr if it's a number                /_pntr exch ddef                                }            ifelse        }        ifelse    }    loop            % return the modified encoding    _tempEncode}def/TE    % Set std platform encoding     % (encoding pairs) TE -{    StandardEncoding 256 array copy modifyEncoding     /_nativeEncoding exch def} def% re-define font% expected arguments% for 'normal fonts : % [ /_Helvetica-Bold/Helvetica-Bold direction fontScript defaultEncoding TZ%% for cartographic, pictographic, and expert fonts :% [ ... number value stream ... /_Symbol/Symbol %    direction fontScript defaultEncoding TZ% for blended fonts w/ default encoding :% [ /_AdobeSans_20ULig1XCond-Bold/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ% for blended fonts w/ special encoding :% [ ... number value stream ... /_AdobeSans_20ULig1XCond/AdobeSans %    direction fontScript defaultEncoding [ w0 w1 ... wn ] TZ/TZ        {    % set weight vector (if present)    dup type /arraytype eq {/_wv exch def} {/_wv 0 def} ifelse     % platform dependent coding flag    /_useNativeEncoding exch def    % pop fontScript & direction    pop pop        % create a new dictionary with length    % equal to original dictionary length + 2    % copy all the key/value pairs except FID    % call makeblended font with the weight values if _wv is an array    findfont _wv type /arraytype eq {_wv makeblendedfont} if dup length 2 add dict        begin            % copy all the values but the FID        % into the new dictionary        mark exch        {            1 index /FID ne { def } if cleartomark mark        }        forall        % discard last mark        pop                % define FontName        /FontName exch def                % if no re-encoding stream is present        % then if the base encoding vector of the font        % is the same as StandardEncoding        % and the use platform encoding flag is true        % then install AI platform encoding        % else leave the base encoding in effect        counttomark 0 eq        {            1 _useNativeEncoding eq            {                /Encoding _nativeEncoding def            }            if            % clean up            cleartomark        }        {                % custom encoding to be done            % start off with a copy of the font's standard encoding            /Encoding load 256 array copy             modifyEncoding /Encoding exch def        }        ifelse                FontName currentdict    end        % register the new font    definefont pop}def% text painting operators/tr                    % string tr ax ay string {_ax _ay 3 2 roll} def/trj                % string trj cx cy fillchar ax ay string {_cx _cy _sp _ax _ay 6 5 roll} def/a0{/Tx    % text                            % textString Tx -    {    dup     currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    dup    currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    } ddef    } def/a1{/Tx    % text                    °¿         % textString Tx -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    tr _psf    newpath moveto    tr _ctm _pss    grestore 3 1 roll moveto tr sp    } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave    dup currentpoint 3 2 roll    trj _pjsf    newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp    } ddef    } def/e0{/Tx    % text                            % textString Tx -    {    tr _psf    } ddef/Tj    % justified text                % textString Tj -    {    trj _pjsf    } ddef} def/e1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll gsave     tr _psf      grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll gsave     trj _pjsf    grestore 3 1 roll moveto tr sp     } ddef} def/i0{/Tx    % text                            % textString Tx -    {    tr sp    } ddef/Tj    % justified text                % textString Tj -    {    trj jsp    } ddef} def/i1{W N} def/o0{/Tx    % text                            % textString Tx -    {    tr sw rmoveto    } ddef/Tj    % justified text                % textString Tj -    {    trj swj rmoveto    } ddef} def/r0{/Tx    % text                            % textString Tx -    {    tr _ctm _pss    } ddef/Tj    % justified text                % textString Tj -    {    trj _ctm _pjss    } ddef} def/r1{/Tx    % text                            % textString Tx -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    tr _ctm _pss     grestore 3 1 roll moveto tr sp     } ddef/Tj    % justified text                % textString Tj -    {    dup currentpoint 4 2 roll currentpoint gsave newpath moveto    trj _ctm _pjss    grestore 3 1 roll moveto tr sp     } ddef} def% font operators% Binding/To    % begin text                     % bindType To -{    pop _ctm currentmatrix pop} def/TO    % end text                    % TO -{    Te _ctm setmatrix newpath} def% Text paths/Tp    % begin text path                % a b c d tx ty startPt Tp -{    pop _tm astore pop _ctm setmatrix     _tDict begin /W {} def /h {} def} def/TP    % end text path                    % TP -{    end    iTm 0 0 moveto} def% Render mode & matrix operators/Tr    % begin render                    % render Tr - {    _render 3 le {currentpoint newpath moveto} if    dup 8 eq {pop 0} {dup 9 eq {pop 1} if} ifelse    dup /_render exch ddef    _renderStart exch get load exec} def/iTm % internal set text matrix        % - iTm -    (uses _tm as implicit argument){_ctm setmatrix _tm concat 0 _rise translate _hs 1 scale} def/Tm % set text matrix                % a b c d tx ty Tm -{_tm astore pop iTm 0 0 moveto} def/Td % translate text matrix         % tx ty Td -{_mtx translate _tm _tm concatmatrix pop iTm 0 0 moveto} def/Te    % end render                    % - Te -{    _render -1 eq {} {_renderEnd _render get dup null ne {load exec} {pop} ifelse} ifelse    /_render -1 ddef} def% Attributes/Ta    % set alignment                    % alignment Ta -{pop} def/Tf    % set font name and size        % fontname size Tf -{dup 1000 div /_fScl exch ddefexch findfont exch scalefont setfont} def/Tl    % set leading                    % leading paragraphLeading Tl -{pop0 exch _leading astore pop} def/Tt    % set user tracking                % userTracking Tt -{pop} def/TW % set word spacing                % minSpace optSpace maxSpace TW -{3 npop} def/Tw    % set computed word spacing        % wordSpace Tw{/_cx exch ddef} def/TC % set character spacing            % minSpace optSpace maxSpace TC -{3 npop} def/Tc    % set computed char spacing     % charSpace Tc -{/_ax exch ddef} def/Ts % set super/subscripting (rise)    % rise Ts -{/_rise exch ddefcurrentpointiTmmoveto} def/Ti    % set indentation                % firstStartIndent otherStartIndent stopIndent Ti -{3 npop} def/Tz % set horizontal scaling        % scalePercent Tz -{100 div /_hs exch ddefiTm} def/TA % set pairwise kerning            % autoKern TA -                                    %    autoKern = 0 -> no pair kerning                                    %             = 1 -> automatic pair kerning{pop} def/Tq % set hanging quotes            % hangingQuotes Tq -                                    %    hangingQuotes     = 0 -> no hanging quotes                                    %                     = 1 -> hanging quotes{pop} def% Text Bodies/TX {pop} def%/Tx    % non-justified text            % textString Tx -%/Tj    % justified text                % textString Tj -/Tk    % kern                            % autoKern kernValue Tk -                                    %      autoKern = 0 -> manual kern, = 1 -> auto kern                                    %    kernValue = kern value in em/1000 space{exch pop _fScl mul neg 0 rmoveto} def/TK    % non-printing kern                % autoKern kernValue TK -{2 npop} def/T* % carriage return & line feed    % - T* -{_leading aload pop neg Td} def/T*- % carriage return & negative line feed    % - T*- -{_leading aload pop Td} def/T-    % print a discretionary hyphen    % - T- -{_hyphen Tx} def/T+    % discretionary hyphen hyphen    % - T+ -{} def/TR    % reset pattern matrix             % a b c d tx ty TR -{_ctm currentmatrix pop     _tm astore pop iTm 0 0 moveto } def/TS    % special chars                    % textString justified TS -{0 eq {Tx} {Tj} ifelse} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_IllustratorA_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Abbreviated Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_IllustratorA_AI3 61 dict dup begin put% initialization/initialize                % - initialize -{% 47 vars, but leave slack of 10 entries for custom Postscript fragmentsuserdict /Adobe_IllustratorA_AI3_vars 57 dict dup begin put% paint operands/_lp /none def/_pf {} def/_ps {} def/_psf {} def/_pss {} def/_pjsf {} def/_pjss {} def/_pola 0 def/_doClip 0 def% paint operators/cf    currentflat def    % - cf flatness% typography operands/_tm matrix def/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def /_renderEnd [null null null null /i1 /i1 /i1 /i1] def/_render -1 def/_rise 0 def/_ax 0 def            % x character spacing    (_ax, _ay, _cx, _cy follows awidthshow naming convention)/_ay 0 def            % y character spacing/_cx 0 def            % x word spacing/_cy 0 def            % y word spacing/_leading [0 0] def/_ctm matrix def/_mtx matrix def/_sp 16#020 def/_hyphen (-) def/_fScl 0 def/_cnt 0 def/_hs 1 def/_nativeEncoding 0 def/_useNativeEncoding 0 def/_tempEncode 0 def/_pntr 0 def/_tDict 2 dict def% typography operators/Tx {} def/Tj {} def% compound path operators/CRender {} def% printing/_AI3_savepage {} def% color operands/_gf null def/_cf 4 array def/_if null def/_of false def/_fc {} def/_gs null def/_cs 4 array def/_is null def/_os false def/_sc {} def/_i null defAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3    {    dup xcheck        {        bind        } if    pop pop    } forallendendAdobe_IllustratorA_AI3 beginAdobe_IllustratorA_AI3_vars beginnewpath} def/terminate                % - terminate -{endend} def% definition operators/_                    % - _ nullnull def/ddef                % key value ddef -{Adobe_IllustratorA_AI3_vars 3 1 roll put} def/xput                % key value literal xput -{dup load dup length exch maxlength eq    {    dup dup load dup    length 2 mul dict copy def    } ifload begin def end} def/npop                % integer npop -{    {    pop    } repeat} def% marking operators/sw                    % ax ay string sw x y {dup length exch stringwidthexch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add} def/swj                % cx cy fillchar ax ay string swj x y{dup 4 1 rolldup length exch stringwidth exch 5 -1 roll 3 index 1 sub mul add4 1 roll 3 1 roll 1 sub mul add 6 2 roll /_cnt 0 ddef{1 index eq {/_cnt _cnt 1 add ddef} if} forall popexch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop} def/ss                    % ax ay string matrix ss -{4 1 roll    {                % matrix ax ay char 0 0 {proc} -    2 npop     (0) exch 2 copy 0 exch put pop    gsave    false charpath currentpoint    4 index setmatrix    stroke    grestore    moveto    2 copy rmoveto    } exch cshow3 npop} def/jss                % cx cy fillchar ax ay string matrix jss -{4 1 roll    {                % cx cy fillchar matrix ax ay char 0 0 {proc} -       2 npop     (0) exch 2 copy 0 exch put     gsave    _sp eq         {        exch 6 index 6 index 6 index 5 -1 roll widthshow          currentpoint        }        {        false charpath currentpoint        4 index setmatrix stroke        }ifelse    grestore    moveto    2 copy rmoveto    } exch cshow6 npop} def% path operators/sp                    % ax ay string sp -{    {    2 npop (0) exch    2 copy 0 exch put pop    false charpath    2 copy rmoveto    } exch cshow2 npop} def/jsp                    % cx cy fillchar ax ay string jsp -{    {                    % cx cy fillchar ax ay char 0 0 {proc} °¿ -    2 npop     (0) exch 2 copy 0 exch put     _sp eq         {        exch 5 index 5 index 5 index 5 -1 roll widthshow          }        {        false charpath        }ifelse    2 copy rmoveto    } exch cshow5 npop} def% path construction operators/pl                % x y pl x y{transform0.25 sub round 0.25 add exch0.25 sub round 0.25 add exchitransform} def/setstrokeadjust where    {    pop true setstrokeadjust    /c                % x1 y1 x2 y2 x3 y3 c -    {    curveto    } def    /C    /c load def    /v                % x2 y2 x3 y3 v -    {    currentpoint 6 2 roll curveto    } def    /V    /v load def    /y                % x1 y1 x2 y2 y -    {    2 copy curveto    } def    /Y    /y load def    /l                % x y l -    {    lineto    } def    /L    /l load def    /m                % x y m -    {    moveto    } def    }    {%else    /c    {    pl curveto    } def    /C    /c load def    /v    {    currentpoint 6 2 roll pl curveto    } def    /V    /v load def    /y    {    pl 2 copy curveto    } def    /Y    /y load def    /l    {    pl lineto    } def    /L    /l load def    /m    {    pl moveto    } def    }ifelse% graphic state operators/d                    % array phase d -{setdash} def/cf    {} def            % - cf flatness/i                    % flatness i -{dup 0 eq    {    pop cf    } ifsetflat} def/j                    % linejoin j -{setlinejoin} def/J                    % linecap J -{setlinecap} def/M                    % miterlimit M -{setmiterlimit} def/w                    % linewidth w -{setlinewidth} def% path painting operators/H                    % - H -{} def/h                    % - h -{closepath} def/N                    % - N -{_pola 0 eq     {    _doClip 1 eq {clip /_doClip 0 ddef} if     newpath    }     {    /CRender {N} ddef    }ifelse} def/n                    % - n -{N} def/F                    % - F -{_pola 0 eq     {    _doClip 1 eq         {        gsave _pf grestore clip newpath /_lp /none ddef _fc         /_doClip 0 ddef        }        {        _pf        }ifelse    }     {    /CRender {F} ddef    }ifelse} def/f                    % - f -{closepathF} def/S                    % - S -{_pola 0 eq     {    _doClip 1 eq         {        gsave _ps grestore clip newpath /_lp /none ddef _sc         /_doClip 0 ddef        }        {        _ps        }ifelse    }     {    /CRender {S} ddef    }ifelse} def/s                    % - s -{closepathS} def/B                    % - B -{_pola 0 eq     {    _doClip 1 eq     % F clears _doClip    gsave F grestore         {        gsave S grestore clip newpath /_lp /none ddef _sc        /_doClip 0 ddef        }         {        S        }ifelse    }    {    /CRender {B} ddef    }ifelse} def/b                    % - b -{closepathB} def/W                    % - W -{/_doClip 1 ddef} def/*                    % - [string] * -{count 0 ne     {    dup type (stringtype) eq {pop} if    } if _pola 0 eq {newpath} if} def% group operators/u                    % - u -{} def/U                    % - U -{} def/q                    % - q -{_pola 0 eq {gsave} if} def/Q                    % - Q -{_pola 0 eq {grestore} if} def/*u                    % - *u -{_pola 1 add /_pola exch ddef} def/*U                    % - *U -{_pola 1 sub /_pola exch ddef _pola 0 eq {CRender} if} def/D                    % polarized D -{pop} def/*w                    % - *w -{} def/*W                    % - *W -{} def% place operators/`                    % matrix llx lly urx ury string ` -{/_i save ddef6 1 roll 4 npopconcat popuserdict begin/showpage {} def0 setgray0 setlinecap1 setlinewidth0 setlinejoin10 setmiterlimit[] 0 setdashnewpath0 setgrayfalse setoverprint} def/~                    % - ~ -{end_i restore} def% color operators/O                    % flag O -{0 ne/_of exch ddef/_lp /none ddef} def/R                    % flag R -{0 ne/_os exch ddef/_lp /none ddef} def/g                    % gray g -{/_gf exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _gf setgray    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/G                    % gray G -{/_gs exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _gs setgray    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/k                    % cyan magenta yellow black k -{_cf astore pop/_fc{_lp /fill ne    {    _of setoverprint    _cf aload pop setcmykcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/K                    % cyan magenta yellow black K -{_cs astore pop/_sc{_lp /stroke ne    {    _os setoverprint    _cs aload pop setcmykcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def/x                    % cyan magenta yellow black name gray x -{/_gf exch ddeffindcmykcustomcolor/_if exch ddef/_fc{ _lp /fill ne    {    _of setoverprint    _if _gf 1 exch sub setcustomcolor    /_lp /fill ddef    } if} ddef/_pf{_fcfill} ddef/_psf{_fcashow} ddef/_pjsf{_fcawidthshow} ddef/_lp /none ddef} def/X                    % cyan magenta yellow black name gray X -{/_gs exch ddeffindcmykcustomcolor/_is exch ddef/_sc{_lp /stroke ne    {    _os setoverprint    _is _gs 1 exch sub setcustomcolor    /_lp /stroke ddef    } if} ddef/_ps{_scstroke} ddef/_pss{_scss} ddef/_pjss{_scjss} ddef/_lp /none ddef} def% locked object operator/A                    % value A -{pop} defcurrentdict readonly pop endsetpacking% annotate page operator/annotatepage{} def%%EndResource%%EndProlog%%BeginSetup%%IncludeFont: HelveticaAdobe_cmykcolor /initialize get execAdobe_cshow /initialize get execAdobe_customcolor /initialize get execAdobe_typography_AI3 /initialize get execAdobe_IllustratorA_AI3 /initialize get exec[39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash/questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef/guillemotleft/guillemotright/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caronTE%AI3_BeginEncoding: _Helvetica Helvetica[/_Helvetica/Helvetica 0 0 1 TZ%AI3_EndEncoding TrueType%%EndSetup0 A0 R1 0.51 0 0.305 (PANTONE 541 CV) 0.5 X0 i 0 J 0 j 1 w 4 M []0 d%AI3_Note:0 D240.0083 457.5312 m262.3833 457.5312 lSu1 O1 0.51 0 0.305 (PANTONE 541 CV) 0.5 x260.1227 457.5415 m258.5721 455.2013 l264.9293 457.4749 L258.6375 459.9237 l260.1227 457.5415 LfU0 R1 0.51 0 0.305 (PANTONE 541 CV) 0.5 X237.4687 456.9917 m237.4687 434.6167 lSu1 O1 0.51 0 0.305 (PANTONE 541 CV) 0.5 x237.479 436.8773 m235.1388 438.4279 l237.4124 432.0707 L239.8612 438.3625 l237.479 436.8773 LfU0 R0 G211.0083 457.5312 m234.3833 457.5312 lSu1 O0 g232.1227 457.5415 m230.5721 455.2013 l236.9293 457.4749 L230.6375 459.9237 l232.1227 457.5415 LfU0 R0 G209.5312 456.9917 m209.5312 434.6167 lSu1 O0 g209.5415 436.8773 m207.2013 438.4279 l209.4749 432.0707 L211.9237 438.3625 l209.5415 436.8773 LfU0 To1 0 0 1 202.5 444.625 0 TpTP-2 0 Td0 Tr0 O/_Helvetica 8 Tf0 Ts100 Tz0 Tt0 TA0 0 5 TC100 100 200 TW0 0 0 Ti1 Ta0 Tq9 0 Tl0 Tc0 Tw(v) Tx (\r) TX TO0 To1 0 0 1 220.8125 462.125 0 TpTP-2.2236 0 Td0 Tr(u) Tx (\r) TX TOu221 447.0625 m224.5 452 l226.9375 447.0625 l221 447.0625 lf226.9375 447.0625 m229 441.9375 l235.875 447.0625 l226.9375 447.0625 lf221 447.0625 m218.0625 443 l214 447.0625 l221 447.0625 lf218.0625 443 m213.0625 435.0625 l223.5 440.125 l218.0625 443 lf229 441.9375 m230.9375 435.0625 l223.5 440.125 l229 441.9375 lfU%AI3_BeginCropsuserdict /AI3_noCropMarks known not {uu0 R0 G0.5 w185 422 m158 422 LS194 413 m194 386 LSUu185 474 m158 474 LS194 483 m194 510 LSUu277 474 m304 474 LS268 483 m268 510 LSUu277 422 m304 422 LS268 413 m268 386 LSUU} if%AI3_EndCrops%%PageTrailergsave annotatepage grestore showpage%%TrailerAdobe_IllustratorA_AI3 /terminate get exec°¿øAdobe_typography_AI3 /terminate get execAdobe_customcolor /terminate get execAdobe_cshow /terminate get execAdobe_cmykcolor /terminate get execAdobe_packedarray /terminate get exec%%EOF ÷◊#ˇ ˇˇˇˇ#◊ 
  889. d, Palatino
  890. .°dONLNd$â+6@SThe bounding box of our star shape will be a fixed-point rectangle contained in the°dONLNdT$0è* Svariable starShapeBounds. This information is used to define the u and v vectors of°dONLNd®0<k* our pattern record.,
  891. Courier    °dONLNdΩITT* gxRectangle °dONLNdÀIoTø)WstarShapeBounds;°dONLNd‹al(à62GXGetShapeBounds(starShape, 0L, &starShapeBounds);
  892. °dONLNdxÑT*FWe define u and v to place the stars side by side without overlapping:    °dONLNdVëúc*gxPatternRecord°dONLNdgë}úπ)e starPattern;°dONLNdt©¥|(–6starPattern.u.x = 0;°dONLNd⵿Â* )starPattern.u.y = starShapeBounds.bottom;°dONLNd≥¡Ã* /starPattern.v.x = starShapeBounds.right + fix1;°dONLNd„Õÿ|* starPattern.v.y = 0;
  893. °dONLNd¯‰ç*SWe set the attributes of the pattern record to gxNoAttributes and then add our star°dONLNdL¸º* $polygon shape to the pattern record:    °dONLNdq    ‡*(starPattern.attributes = gxNoAttributes;°dONLNdö ∏*  starPattern.pattern = starShape;
  894. °dONLNdª,8É*KFinally, we add the starPattern to tempTextShape. QuickDraw GX copies a new°dONLNd8Dt* Kstyle to the converted tempTextShape with the pattern record, replacing the°dONLNdSDPq* Jdefault style currently referenced by tempTextShape. Anytime this shape is°dONLNdûP\è* Ndrawn, it will be drawn patterned with stars. We add our updated tempTextShape°dONLNdÌ\hÍ* /to the picture stored in the variable gthePage:    °dONLNduÄ*/GXSetShapePattern(tempTextShape, &starPattern);°dONLNdMÅål* DGXSetPictureParts(gthePage, 0, 0, 1, &tempTextShape, nil, nil, nil);
  895. °dONLNdíò§á*RNow we can dispose of our star polygon shape because it’s contained in our pattern°dONLNd§∞è* Srecord, which has been encapsulated into the style of our shape. We also dispose of°dONLNd9∞ºb* JtempTextShape because there’s now a unique reference to it in our picture.    °dONLNdÑ…‘ö*GXDisposeShape(starShape);°dONLNdü’‡Æ* GXDisposeShape(tempTextShape);,     Helvetica°dONLNdæÌ¯T* The results.›k¬¢°dONLNd ÍT˘W)< 
  896. °dONLNdÀÏW¯ä)DOur picture, gthePage, now contains two shapes. The first shape is a°dONLNd¯é( 6Rcolored path that outlines the text “GX.” The second shape is the same path filled°dONLNdcí* Mwith gray stars. When we call GXDrawShape(gthePage), all the shapes contained°dONLNd±* <in our picture are drawn. The results are shown in Figure 6. u4u& (x) +
  897. 25(Úh"GETTING STARTED WITH QUICKDRAW GX )ë )September 1993ˇÜ–◊#ˇ ˇˇˇˇ#◊ 
  898. 6D—."6D°d
  899. ONLNfH"—.°d
  900. ONLNfv»†Ç†é
  901. 45C6Dò>@Í@Í6Dv.√√√√
  902. Ú˝ˇ¯ÿ
  903. Ù˙ˇ¸Ÿı
  904. ˇˇ¸pˇ˛⁄ı ˇ¸<ˇˇ‡€/ˆ ˇˇ˛ˇ¸ˇ˚ˇ˚˝ˇÄ¸?ˇˇÄ˛˝ˇ¸˛ˇ#˜˛ˇ
  905. ġˇˇ¸ˇ¯?¸Ùˇ˛ˆˇ¯1˜?Ä˝ˇ˛Ò¯ˇ¸¿ˇÅ˚ˇÒ¯˛è¿˛?ˇˇ˛¯¸5¯ˇ¿¸è¸ˇ¿|ü˝¿¸Å‡>¿x∏˛~¿¯É‡|7¯·‡ˇ˛ˇˇ<¸˝¡É¿Ä<>8˛¡‡É¿Ä7˘˛a¿?¯˝ˇ 8˝ˇ¿!«CÜ 8˛˛√Ä!áC¯5˘ˇÄ¸Û˝ˇ˛p¿Äˇ˝ ˇ¯`¿ˇ3˘Ä<˚ˇÄ¸ˇ‡¿ˇˇÄ˝
  906. ˇ‡‡ˇˇˇ.˙¯|˘Äĸ
  907. ¯‡¿ˇ˙¯‡ˇ¿˛*˙¿~¯˘¿ÅÄ˚~‡¯>¯ˇ¸˝"˙˝ˇ‡˘˝ˇ¿˚˙ˇ¯¸ˇÄ˝(˚˘ˇˇÉˇ˜ˇ‡ˇ¿˚˝¸ˇ¯?ˇ‡¯˛ˇˇ¯¸(˚¿ˇ?¸˜?œ¿¿˚¯¸ÛÁ¿¯¸˘ˇÄ¸&˚ĸ‡˜á¿~¿˙xx¡É¿¯|‡˛˚&˚ˇ¯Ę√Ä|¿˙>0㇝8¿|˚&¸ÛÄpˆ·¿0¿˙8p‡¯Å˚%¸«„‡¸ıÛÒ‡¿˙˛>¸x¯?¿˚$¸>ˇ‡ı?ˇ¿˙ˇ˛ˇ¸¯¯ˇ˙#¸xˇ‡¿ıˇ¿˘ˇ˛ˇ¸¸¯ˇ|˙$˝¯«‡?Äı„¿˘|?¯¸˛¯8˛?˙#˝¯?~Ùį¿˘‡>«¯q¯‡˙$˝∏<|ÙÄx‡˘ÄĢ·‡Ä˙$˝p0Ù¬`˘√Ü¿˙√Ä/˘#˝~ ‡ÛÊ`˘¿Ä˙Ä|˘#˝ˇ¿Û`˘‡¿¯˙¯˘#˛ÔÄÛ`¯p¿º˙˘"˛üÄ?Ú?Ä`¯<‡fi˙‡˘˛˝ˇ˛Úˇ‡¯˚ˇ˙?ˇˇÄ˘"˛?‡ˇˇ¡¸Úˇ¿¯ˇ¯?ˇÄ˚wˇˇ¯"˛‡üįÚ¿¯Û«‡¿˚„¸˛¯#˛Û¿~ÄÚˇ¿¯¡É¿?¸√|¯#·Ä<‡ÚˇÄ˜‡‡¿>x¸Ňp¯!¡‡8Å¿Ò|ˆxp ‡<¸¡‡¯ɢ„ÄÂ<¸x¯¸œÉ¿¯ˇˇ‰ˇ¸ˇ¯¸?ˇáįˇˇ‰ˇ¸ˇ¯Ä˝ˇé˜·¯Œ‰¯|Ò¯‡˝ˇ¸˜<į? ‰‡>¿x˛¸¯˜|8<„<>x˛˜Óp8„xÜ 8<˛¿¿˜¿0„=IJ?ĘÄp„¿Ä˛8ˆ¿ć„ ¿ÄÄp~ˆ¿ć„ ‡¿?‡‡¯ˆ¸ˇ¿„˚ˇˇˇˆ?Ô‡ˇfl¿‚ ˇˇˇ‡¯ˇ‡ˆ ?«‡èÄ‚ ?«‡迸˛?¿ˆ?¿~Ä‚
  908. É¿?Ä~¯ı8Ä<·
  909. ¿>8ı8‡8·
  910. Ň¿s¿‡<ı|¯˘·
  911. ¡¯Û·ÛÁ¿xı¯ˇ·
  912. „ˇ¯ˇ‡ˇ¡‡ı˝¸ˇ‡    wˇ¯ˇÔ„¿ı¸·¯‡    ?Ò¯„?áÁÄı¿<į<‡¿xÄ>ÔÙÄ8<‡<<xx¸Ùò>@ÄÍ@ÄÍvD∂.Å|‡É 0`xÙÉć√ÙÄfl˜Ä¿Ù¿ÄflÄ?ÄÙ¿Äfl?¿?ÄÙ¸ˇ¯fl˚ˇÛ?Ô‡ÿflfl‡ˇøÉÄÙ?«¿∏flˇè¿ˇÅÄÙ‡?¿~0flˇÄ~¿Ù¿Ä<0fi¸xÙ‡80fix¿pįÙ¸¯˘0fi<Û‡Á¸Ùˇ¯ˇ0ˆ˜ıˇ‡ˇfiÙ#˝¸ˇ0˜˛ˇ¸¸ˇˇˆˇÔÔÙ¸·¯0˜ıˇ¯ˆè√?á„Äı$¿<į0˜‡>«¸ˇÒ‡|ˆü>·¿ı&80˜Ä8x ˆ¸xx‡‡ı& p˜Ü 8` 0¿ˆ`0¯ı& Ä0˜Ò¿ ¯ˆ¿<ı&Ä0˜ˇˇ¿Ä?ˇ¯ˆÄ<ı$¿Ä0ˆ ˇ¸Ä?ˇˇı>ı"¿Ä0Ùœ¿Ä‡Ù?~Ĉ¸ˇÙ˚ˇ˛Û˙ˇ¿ˆ ?Ô‡¯ÛxÔ‡ˇøÛfl‡ˇøÅˇ‡ˆ ?«¿Û?á¿¿Ûˇè¿ˇŞ>pˆ!‡¿~Û ?Ä~ÄÙ    ˇò~¯<ˆ!¿Ä<Û ÄxÄÙ    º~x ˆ ‡0Û ‡pÛ    8ˇćˆ!¸¯˘Û ¯˚‡Û
  913. Á‡Á¿œÄ˜!ˇ¯ˇÛ¯ˇÛ
  914. ?¯Ňˇ¿?ˇ¿˜!˝¸˚Û¯ˇÛ
  915. ¯Ô‡?fl‡˜"¸·¯Û¸·Ù ¯8?á‡˜"¿<Äx>Û|į?Ù ¿xx>‡|¸˜"¿8>Û8{Ù Äx‡fi˜"¡vÛ 0cÙ ‡‡0¿œ˜#„ÄÛÙ <¿¿8į#gÄÛÄÙ xá‡<x¿¯$w¿ÄÄÙÄÙû˛>|‡¯%?¿ÄÄÙ¿Äı‡¸˛x~¸p¯?¸ˇÄÙ¸ˇıˇˇ¯˛?¸ˇ¯¯%?Ô‡fl¿ÙÔ‡ˇøıÔ˛Ŏ˛˛¯%?«¿¿Ù?á¿ı«·¿˛Ş>¯¯&¿~‡Ù?Ä~ı?ɫIJį?Ģ%Ä<pÙÄxı˛œ˝‡ ‡¿˘%‡pÙ8‡pˆ¸˛¸‡Ä?‡˘%¯˚¯Ù¯˚‡ˆ¸¯¸¿flÄ?˘%¯ˇ¸Ù¯ˇˆ¸¸?¿?ˇÄ¯˘%¸˚¸Ù¯ˇˆ¸‡¸‡?flĸ˘%¸·¯ŒÙ¸·ˆ<|¿¸‡¿˛˘&|Äx?Ù|¯?ˆx>ĸ‡¸¡¯Ä˙&<8<Äı8{ˆ˚‡¡‡¿˙&`Äı 0c˜¡Ü<˙¿Ca‡˙&¿ıĘÅÄx˙x8`˙&‡ıĘ¿˙<x8˙&ÄÄ>pı¿˜¡‡˙|˙&¿Ä?8ı¿?Ę8„Ä˙¸¯˙˛¸ˇ˛ı¸ˇ˜˛ˇ˘˚ˇÄ˚&˛‡fl¡ˇı Ô‡ˇø¯˚¯>˘ˇ˛˛˚¿˚&˛?¿ÄˇÄˆ ?`·<¯˛¯|Ò‡˚&˛¿~ˇ¿ˆ ?Ä~¯¿‡x¯~8‡˚&˛Ä<q‡ˆ Äx¯Ä`¯<‡Ä8˚&˛‡p¿‡pˆ 8‡p¯~˘‡¯Ä>~˚%˝˚˜‡<ˆ¯˚¯˛ˇ¿¯flÄ?ø˚'˝ˇ‡ˆ¯ˇ˘˛ˇÄ¯ˇÄˇˇÄ¸ò>ÄõÍÄõÍ∂D—.'˝˜‡?Ɲ˜˘˛ˇ˜flÄøˇ¿¸'˝¯√‡?‡˜¸¡˘??˛˜œ¿˛¯‡¸&˝¯>|˜<¯>˘¸‹ˆ„¡ɇx¸'˝¯8p|˜88~˙ˆa¡¿áÄ<¸&¸~` 0¿˜s0n˙¿A 8ˆpCaÜfi¸(¸Ä ?¿¯cÄ˙?‡0ˆ8`œÄ˝)¸‡=¯ÁÄx˚¸‡0ˆ8„‡˝*¸¯>|~˘œ¿˚‡8ˆ<‡¯˝*˚>?˛¿˙è¿?Ň˚˛ˆ¸¯>˝"˚¸ˇ˙¸ˇ¿¸˚ˇ¯˘ˇÄ˛/˚Òˇ?ɲ˛˙?œ‡ˇ˚ˇá˝¸Û˚ˇ¿˙
  916. ˇÉ˛˛˘¸˜¸˛3˙˛˛¸‡˚ˇ‡?ᡯ¸
  917. ?¸¯·ˇ¿¸ ˇ˛¯|¯„ˇˇ5˙¸¯?ˇ¸·¿?è‡˝ ˇº‡x¿‡ˇ¸¸¸8‡p¡Áˇ¿5˙¸‡?¯˝Ä¿ø¸ ‡¿0`ˇ¸¯ ‡Ä0‡‡6˘?œÅ¿ˇ¯ˇ˛8¯¸ ¿|¯˜Ä˝·¿Ä>|¯p5˘ˇÔÄ?fl˝ˇ¸˝¯‡¸ Ä?ø~˛¸ˇÄ˝Ô¿flÄ?ø|˛¯p0¯ˇˇ¿?ˇÄ˛ˇ¸ˇ˚ˇ˚ ġ?ˇˇÅˇ¸ˇ¸ˇ¿?˚ˇ˛ˇ¸$¯ˇ¿øÄˇ˛¸˝ˇ¯˚¯ˇ«˛¸ıˇ‡.˜ ˇ¯˛Ÿ¯~ˇ˛˙˛ˇ‡˝ˇ¸¸ˇˇ¿˝?˝ˇÄ˜ ˇ¯Å‡ˇÄ~ψ
  918. ˇ˘√¿áŎˇ‡Ÿı?˛ˇ_˛ˇ¯ÿÙ¸ˇ÷Ú‘√√√òÅÍ@ÍHHˆt|&¥Ä˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  919. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@Í6Dv.'ÅÅÅóÅÅÅóÅÅÅóÅÅÅó3Ü)ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄÅźJî@ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÅÅ≈Hö§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§ÈÍ˙ÍÈͯÍÈ͢ÈÍȸħħħħħħħħħÄÅÅŒP†ÄÄz§ÄÄz§ÄÄz§ÄÈȯÍÈÈÍÍÈÈ˛ÈÍÍȯÍÍÈÈÍÍ˝ÈÈÍͯÈÍÍÈÈÍÄÄz§ÄÄz§ÄÄz§ÄÄÅÅ“‰¶ÄÄz§ÄÄz§ÄÄz§ÄÈÈÍÍÈÈÍͯÈÍÍÈÈÍÍÈÈÍÍÈÈͯÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ÍÍÈÈÍÍÈÈÍÍÈÈÍÍȧÄÄz§ÄÄz§Ä !ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ–§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ€&ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˚9¨§Ä§Ä§Ä§Ä§Ä§Ä§ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ˙ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍ˙ÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ÈÍÈÍÈÍÈÍÈÍÈÍÈÍȸ    Ä§Ä§Ä§Ä§Ä§–n§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§fl^ħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħĸ2Ø    §ÄÄz§ÄÄz§Ä¸ÈÍÍÈÈÍͲÍÈÈÍÍÈ˙&ÈÈÍÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄÈÍÍÈÈÍ˚ÈÍÍÈÈÍͲÍÈÈÍÍÈ˙ ÈȧÄÄz§ÄÄz§Ä’Äz§ÄÈÈ˚ÈÈÍÍÈÈÍͲÍÈÈÍÍÈ˚4ÍÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Í˛ÍÈÈÍÍÈ˙ÈÈÍÍÄz§Ä‡ z§ÄÈÍÍÈÈÍÍÈ˛ÈÈÍÍÈÈ˚ÈÈÍÍÈÈͲÍÍÈz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍ˙ÍÍÈÈÍÍÈ˛ÈÈÍÍÈȸÄÄz˝≥ Äz§ÄÄz§ÄÈÈÍÍ˚ÍÍÈÈÍÍ˚ÍÍÈÈͲ+§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz¸ÍÈÈÍÍ˙ÍÈÈÍ͸ÈÍÍÈÈÍz§ÄÄz§ÄÄz⁄z§ÄÈÈÍÍ˚ÍÍÈÈÍÍ˚ÍÍÈÈÍ˚ÈÍÍÈÈ˙ÈÍÍÈȸÍÈÈÍÍÈ˙ÈÈÍÍȸÍÍÈÈÍÍ˙ÍÈÈÍ˚    ÈÍÍÈÈÍÄz§·    ÄÄÍÈÈÍÍÈ˚ÍÈÈÍÍ˚ÍÍÈÈÍ˙ÍÍÈÈ͸ÈÈÍÍÈÈ˙ÈÍÍÈ˚ÍÈÈÍÍÈ˚ÍÈÈÍ͸z§Ä˝Á∂§Ä§Ä§Ä§Ä˝ÍÈÍȸÈÍÈ͘ÈÍħħħħħħÂħħħħħħÈÍÈ͘ÈÍÈ͸ÍÈÍÈ˘§Ä§Ä§Ä§‹§Ä§ÄÍÈ͸ÍÈÍÈ͘ÈÍȸÈÍÈ͘ÈÍÈ͸ÍÈÍȘÍÈÍȸÈÍÈ͘ÈÍÈÍ˝ÈÍÈÍÈ˛ħķ§Ä§ÄÍÈ͈ÍÈ͸ÍÈÍȘÍÈÍȸÈÍÈ͘ÈÍÈ͸ÍÈÍȘÍÈÍÈ˝§Ä§˝Ô∫z§ÄÄz§ÄĸͽÍÈ˝ÈÍ͢
  920. Èz§ÄÄz§ÄÄz§◊z§ÄÄz§ÄÄz˙È˝ÍÍ˝ÈÈÍ¯È˝z§ÄÄ‹§ÄÄz§ÄÄz§ÄÄzÍÍ˘È˝ÈÍͲÍÈÈ¯Í˝ÈÈ˝ÍÍÈ¯Í˝ÍÈ˝ÈÍ͢ÈÈ˝ÍÍ˝ÈÈͲ§ÄÄzflÄz§ÄÄz§ÄÄ˝È˝ÍÍ˝ÈÈÍ¯È˝ÈÍ˝ÍÈÈ¯Í˝ÈÈ˝ÍÍÈ˘È˝ÍÍÈz§ÄÄz§¸§ΩÄz§ÄÄz§Ä˙ÍÈ
  921. §ÄÄz§ÄÄz§ÄÄœ ÄÄz§ÄÄz§ÄÍÍÏÈÍ˚z§Ä‹z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÈÍÍÌÈÈÏÍÈÏÍÍ˙ ÄÄz§ÄÄz§ÄÄz§Ä› Äz§ÄÄz§ÄÄz§ÄÄÌÈÍÏÈÈÚz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˚°¿§Ä§Ä§Ä§Ä¯ÈÍÈÍÛÄ§Ä§Ä§Ä§Δ    §Ä§Ä§Ä§ÈÍÈÓÈÍÈÍ˚ħ“ §Ä§Ä§Ä§Ä§Ä§ÈÍÓÍÈÍÈÓÈÍÈÍÓÍȧħħħħħħħħđ ħħħħħħÄÙÈÍÈÍÓÍÈÍȘ§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§˜Ö√§ÄÄz§ÄÄıÈÍÍÈȈz§ÄÄz§ÄæÄÄz§ÄÈÔÍÈÈÍÍ˚§ÄÄçÄÄz§ÄÄÔÍÈÈÍÓÍÍÈÈ ÄÄz§ÄÄz§ÄÄz§Ä≈Äz§ÄÄz§ÄĈÈÈÍÍÔÍÍÈÈ͸    Äz§ÄÄz§ÄÄzÈ}Δz§ÄÄz§ÄÚÍÈÈÍÍÈ˘z§ÄÄz§πÄÄz§ÄÈÍÍÈÈÍ˚z§…ÄÄz§ÄÄÚÈÈÍÍÈÈÍÈÈÍÍÈÛÄÄz§ÄÄz∑Äz§ÄĢÈÍÍÈÈÍÈÈÍÍÈȧÄÄz§ÄÄz§ÄÂ…»)§Ä§Ä§ÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȧħħĵ"§Ä§Ä§ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȧħ»@§Ä§Ä§ÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħ±,ħÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħħħć≥ z§ÄÄz§ÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ͸    ÈÈÍÍÄz§ÄÄz∞ÄÄz§ÄÈÈÍÍÈÈÍÍÈÈÍÍȸ    ÍÍÈÈÍÍÈȧÄ≈Äz§ÄÈÈÍÍÈÍÍÈÈÍ͸ÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ͸ÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄÄØ    ÄÄzÍÍÈÈÍÍȸÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§ÄÄz§‹°Ãz§ÄÄz˚ÈÈÍÍÈÈÍÍÍÍÈÈÍÍ˚ÍÍÄz§ÄÄz≠§ÄÄz§ÄÈÈÈÈÍÍÈÈ˙ÈÍÍÈÈÍÍÄzƒÄÄz§ÄÈ˛ÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍÍÍÍÈÈÍÍ˙ÍÈÈÍÍÈÈÍÈÍÍÄzÆz§ÄÈÈÍÍÈÈ˙ÈÍÍÈÈÍÍÈÍÈÈÍÍÄz§ÄÄÿ錧ħħÈ˙ÈÍÈÍÈ͸ÍÈÍÈÍ˚ħħĮħħĽÍÈÍÈÍ˙ÍÈÍÈÍÈħ¬§Ä§Ä˝ÍÈÍÈ˙ÈÍÈÍÈ͸ÍÈÍÈÍ˙ÍÈÍÈÍȸÈÍħƧħÍÈÍÈÍ˙ÍÈÍÈÍȸÈÍħħÄ÷Ä—Äz§ÄÄzÍ͢ÈÈÍÍÈ˙ÈÈ͸Äz§Äħ§ÄÄz˝ÍÍÈ˘ÈÍÍÈÈÄz¡§ÄÄz§˛ÍͯÈÍÍÈ˙ÈÈ͢ÍÈÈÍÍ˙ÍÄz§Øz§ÄÍÍÈ˘ÈÍÍÈÈ˙z§ÄÄz’z”
  922. Äz§ÄÄzÈÈ͢ÍÈÈ˘ÍÍÈÈ˛z§Äİz§ÄÄ˝ÈÍ͢ÈÈ˝§Äø§ÄÄzÈÈ͢ÍÈȯÍÈÈ˘ÍÍÈ˘ÈÍÄÄ∞§ÄÄ˝ÈÍ͢ÈÈÍ˚z§ÄÄz”ê’ħħħ˛ÍÈÍÈÍÈ˛ÈÍÈÍȯ    ÈÍÈÍȧħħü ħħÈÍÈÍÈͲÍÈÍȸħ栠  §Ä§Ä§ÈÍÈÍÈ˛ÈÍÈÍȯÈÍÈÍÈͲÍÈÍȘÍȧħ±ħIJÈÍÈÍÈͲÍÈÍÈ͸§Ä§Ä§—ë◊Äz§ÄĸÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈ˘ÈÍÍÈȧÄÄzõÄz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˝§Äºz§ÄÄÈÍÍÈÈÍÍÈÈÍÍÈ˘ÈÍÍÈÈÍÍÈÈÍÍÈÈÍ͢ÈÈÍÍÄz§≥z§Ä˛ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˛z§ÄÄzœäÿz§ÄÄ˙ÈÈÍÍÈÈÍÍÈÈÍÍÈÈ͢ÍÈȧÄÄzòÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍ˝ÄzªÄz§ÄÈÈÍÍÈÈÍÍÈÈ͢ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ÍÍÈÈÍÄÄz¥ÄÄ˝ÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍz§ÄÄzÕé⁄§Ä§ÄÍÈ˚ÍÈÍÈÍÈͲÍÈÍÈÍÈ˙ÈÍħħÄñħÄÍÈÍÈ˛ÈÍÈÍÈÍ˝ħ∫§Ä§ÄÍ˝ÈÍÈÍÈÍ˚ÈÍÈÍÈÍÈ˛ÈÍÈÍÈÍ˙    ÍÈÍÈÍÈÍħÄ∂ħIJÈÍÈÍÈÍÈ˛    ÈÍÈÍÈÍħħÀÅ€§ÄÄzÍÍȸÍÍÈÈÍÍ˙ÍÈÈÍ͸ÈÍÄÄz§ìz§ÄÈ˙ÈÈÍÍÈ˛Äz∏ÄÄz¸ÍÈÈÍ͸ÈÍÍÈÈÍ˙ÍÍÈÈ͸ÈÈÍÍÈÈ˛z§Ä∏z§Ä˛ÍÈÈÍÍÈ˙ÈȧÄÄz§ s›§ÄÄz§ÈÈ͸ÈÈÍ͘ÍÍÈȸÍÄz§ÄëÄz§˘ÍÈÈͲ§ÄÄ∏§ÄÄz¸ÍÈȸÍÈÈ͘ÈÍÍȸÍÍÈÈ˚Äz§∫§ÄÄ˝ÈÍÍȘÄÄz§»vfi§Ä§Ä˝ÍÈ˝ÍÈÍ¯Í˝ÈÍ˝ȧħé§Ä§˝È˝ÍÈ˝§Ä∑§Ä§ÄÍ˝ÈÍ˝ÈÍÈ¯È˝ÍÈ˝ÍÈ͢ȧħº§Ä§˝ÈÍȯÈħħ«H‡ÄÄz§ÄÈÏÍ͘§ÄÄå§ÄÄÍȘÄÄ∂Äz§ÄÏÈÍÏÈȧÄÄzøÄz§ÒÍÈz§Ä≈P·Äz§ÄÈÈÍÍÓÍÈÈ͢ÄÄzäz§ÄÈÈÍͯz§µÄÄz§ÓÍÍÈÈÓÈÍÍÈz§ÄÄ¡z§ÄÒÈz§ÄăS„    Ä§Ä§ÄÈÍÈÍÓÍÈÍÈ˙ħÄâ§Ä§ÈÍÈͯ§Ä≥§Ä§ÍÈÍÈÍÔ    ÈÍÈÍÈħħ√ħÄħħ√[‰ z§ÄÄÍÈÈÍÍÈÍÍÈÈÍÍ˝Äz§Äá§ÄÄÈÍÍÈ˘z§≤§ÄÄzÚÈÍÍÈÈÍ
  923. ÈÈÍÍÈÈÄÄz§≈ÄÄzÄÄz§¬ïÂ*§ÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈz§ÄÄÖz§ÄÈÈÍÍÈÈÍÍÈȧÄı4z§ÄÄÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄÄz«Äz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§¿åÁħħÈÍÈÍȸÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͸ÍÈÍħħÉħÄÈÍÈÍÈÍÈÍħØħħÈÍÈÍÈÍÈÍÈÍÈÍȸÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͸ÍÈÍÈÍħą§Ä§ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħøÜË    ÄÄz§ÍÈÈÍÍÈ˚ÍÈÈÍÍÈÈÍÈÍÍÈÈÍ˙ÍÄÄz§Ç§ÄÄzÍÈÈÍÍÈÈ§ÄÆÄÄz§ÍÈÈÈÈÍÍÈÈ˙ÈÍÍÈÈÍͲÍÈÈÍÍÈ˚ÍÈÈÍÍÈz§ÄÀ§ÄIJÈÈÍÍÈÈÍÍÍÍÈz§ÄÄæzÈ    Äz§ÄÍÍÈÈ˙ÈÍÍÈÈ͸ÈÈÍÍÈ˙Äz§ÄÅz§ÄÄzÍÍÈz§ÄÄz¨ÄÄz¸ÍÈÈÍÍ˙ÍÈÈÍÍȸÍÍÈÈ˘    ÍÍÈÈÍÍÄz§ÄŒÄÄz˝ÍÍÈÈÍ͸ȧÄÄzΩlͧħĽÍȯÈÍÈÍ˙ÍÈ͢ħÄÅ˝    §Ä§Ä§Ä§Ä§Ä™ħĸÈÍÈ˘ÍÈÍÈÍ˙ÍÈ͢
  924. ÈÍÈÍȧħė§Ä§Ä˚ÍÈÍÈ˚§Ä§ªeΧÄÄz¸ÍÈÈÍ˙ÍÍȯÍÍÈ˚ÄÄzÅ˙z§ÄÄz¶z§ÄÄ˝ÈÍ͢ÈȯÍÈÈ͢Íȸ§ÄÄz”Äz§Ä˙ÍÈȸÄÄz§∫oÎÄz§¸ÈÈÍÍÈÈÍÈÍÍÈȯÍÈÈÍÍÈ˛Äz§Åò Äz§ÄÍÍÈÈÍͲÍÈÈ͘ÈÍÍÈÈͲÍÍÈÈ˙z§ÄÄ’z§ÄÄÈÍÍÍÍÈÈ͸Äz§Äπqϧħ˚ÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ ÈÍÈÍÈÍÈÍÈÍħÅñ§Ä§ÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ˘§Ä§◊ħħÈÍÈÍÈÍÈÍÈÍÈ˝§Ä§Ä∏ţÄÄ˚ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ ÍÍÈÈÍÍÈÈÍÄÄzÅï§ÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍ˙ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍ˙ÍÍÄz§ŸÄÄzÍÍÈÈÍÍÈÈÍÍÈÈͲ§ÄÄ∂sÓÄÄz˚ÈÈÍÍÈÈÍ˝ÍÈÈÍÍÈ˚ ÍÈÈÍÍÈÈÄz§Åí§ÄÄÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÈÈÍͲÍÈÈÍÍÈ˙ÈÈÍÄÄz§‹Äz§ÍÈÈÍÍ˝    ÈÈÍÍÈȧÄÄzµjÔħÄÍ˚ÈÍÈÍÈ˙ÈÍÈÍȸÈÍÈÍÈÍ˝ħÅê§Ä§Ä˙ÈÍÈÍȸÈÍÈÍÈÍ˙ÍÈÍÈ˚ÍÈÍÈÍħħflħħÈÍÈÍ˙ÍÈÍȧħĥbz§ÄÈȸÍÈÈ͈ÍÍȸÍÍÈȸÄÄzÅèÄz§Ä˙ÍÈÈ͸ÈÈÍ͘ÍÍÈÈ˝
  925. ÍÍÈÈÍz§ÄÄ·z§ÄÄÈÍ͈ÍÄz§Ä≥hÒ§ÄÄÍÍÈ˝ÈÍ¯È˝ÈÍ˝ÍÈÈ˚Äz§ÅçÄÄz§˛Í˝ÍÈ˝ÈÍ͢ÈÈ˝ÍÍ˝ÈÈ͸Äz§Ä„§ÄÄzÍÍ¯È˛z§Ä±<ڧħÓÍÈÍÔħÅãħħÍÈÏÈÍӧħħħĈÈÍȧħÄ∞>ÛÄz§ÓÍÍÈÈÄÄzÅâ§ÄÄÈÍÍÓÍÈÈÍÓÍÄÄzÁÄz§ıÍÈȧÄÄzØAÛ§ÄÈÈÔÈÈÍÍÈÚÄz§Åáz§ÄÄÈÔÈÈÍÍÈÔÍÈȧÄÄÈz§ÄÙÈÍÄÄz§ÆG٧ħÈÍÍÈÍÈÍÈÚħÄÅÜħħÈÈÍÈÍÈÍÒÈÍÈÍȧħÄ̧ħÄÙȧħĨÖÙ,z§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄzÅÑ4ÄÄz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§ÄÔ§ÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§Ä´Äı§ÄIJÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍȸÍÍÈÈÍÍÈÈÍÍÈÍÍÈz§ÄÅɧÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȸÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍȸÍÄÄz§ÒÄÄz§ÍÈÈÍÍÈÈÍÈÈÍÍÈz§ÄÄ™{ıħ˝ÈÍÈÍÈÍÈͲÍÈÍÈÍÈ˚ÍÈÍÈÍÈÍÈ˛ÈÍȧÄÅÅħÄÍÈÍÈͲÍÈÍÈÍÈ˚ÍÈÍÈÍÈÍÈ˛ÈÍÈÍÈÍ˚ÈÍħħÛ
  926. ħħÈÍÈÍÈÍÈ˛ÈÍÈÍħħ©jˆz§Ä˝ÈÈÍÍÈÈ˚ÈÈÍÍ˙ÍÈÈÍÍÈ˚ÍÄz§ÅÅz§ÄÈÈ͸ÈÈÍ͢ÈÈÍÍÈȸÍÈÈ͢ÍÈȧÄÄı    z§ÄÈÍÍÈÈÍ˚ȧÄÄzß\˜§ÄÄ˚ÍÈÈ͢ÍȯÍÍÈÈ˘§ÄÅÅ˝Äz§Ä˙ÍÈÈ˘ÍÍÈÈÍ˙ÍͯÈÍÍÈz§Ä˜§ÄIJÈÈÍÍ˙ÄÄz§¶^˜ħÄ˚ÍÈͯÍÈÍÈ˙ÈÍȯħÅŸ§Ä§Ä˚ÍÈÍÈ˘ÍȯÈÍÈÍ˙ÍÈÍħħ˚ħħ˝ÈÍÈ˙ħħ•q¯ z§ÄÈÈÈÈÍÍȯÍÍÈÈÍÍÈÍÈÈÍͯz§ÄÅÅ˚§ÄÄz¸ÍÈÈÍÍÈ˛ÈÈÍͯÈÍÍÈÈÍÍÍÍÈÈÍ˝ÄÄz§Ä§ÄÄz§ÈÍÍÈÈ˙z§Äħr¯ ÄÄzÍÍÈÈÍÍÈÈ͢ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ÍÄÄÅÅ˘z§ÄIJÈÈÍÍÈÈÍÍÈÈÍÍÈÈ͢ÍÈÈÍÍÈÈÍÍÈÈÍÍÈ˚ÄÄz§ÄÄz§ÍÈÈÍÍÈÈÍ͸z§ÄÄ¢s˘Ä§ÄÍÈÍÍÈÍÈÍÈÍ˙ÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ȧÄÅاħÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ˙ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍ˙§Ä§ÄÍÈÍÈÈÍÈÍÈÍÈ˛ħħ°r˘§ÄÄÈ˝ÍÍÈÈÍÍ˚ÍÍÈÈÍÍÈ˝ÈÍÍÈÈÍ˚ȧÄÄÅň    Äz§ÄÈÈÍÍÈÈ˛ÈÍÍÈÈÍ˙ÍÍÈÈÍÍÈ˛ÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍ˝ ÍÈÈÍÍÈÄÄz§†_˙ÄÄz˘ÍÍÈÈ˚ÈÈÍÍÈ˙ÈÈÍÍȸÍÍÄzÅÅÙÄÄz§ÍÈÈ˙ÈÍÍÈ˚ÍÈÈÍÍÈ˙ÈÈÍÍ˚ÍÍÈÈ͢ÍÈÈÍÄz§ÄüQ˙§Ä˜ÍÈ͸ÍÈÍȈÈÍȸÈÍħÅÅÛħħ˜ÈÍÈÍ˝ÈÍÈ͈ÍÈÍÈ˝ÍÈÍȈÈÍħħùòÅÍ@ÄÍHHˆtx&µÄ˛ˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  927. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêê@ÄÍvD∂.'Z˙ÄÄ˚Í˝ÈÈÍ˝ÍÈ¯Í˝ÍÈ˝ÈÍÄÄzÅÅÚz§ÄĸÍÍ˝ÈÈ˝ÍͯȸÍÈ˝ÈÍ¯È˝z§ÄÄú:˚Äz§¸ÈÈÍÌÍÈȈz§ÅÅÔz§Ä˝ÈÈÌÍÍÈÌÈÍͧÄÄzõ9˚ħ˚ÈÍÈÓÈÍÈ͈§ÄÅÅÓħħÍÈÍÈÓÈÍÈÌÍÈͧħô=˚Äz¸ÍÈÈÍÍÔÍÍÈÈ͘z§ÅÅÌÄÄz§ÍÈÈÍÔÈÍÍÈÈÔÈÈÍÍÄz§òA˚§Ä˝ÈÈÍÍÈÈÍÈÈÍÍȘÄÄÅÅϧÄÄzÍÍÈÈÒÍÍÈÈÍÍÈÍÍÈȧÄÄòp˚.ħÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȧÄÅÅÎ4§Ä§ÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħóe˚§ÄÈÈÍÍ˚ÍÍÈÈÍÍÈÈÍÈÈÍÍÈÈÍ˚ ÈÍÍÈÈÍÍÈÈÄÄÅÅÈz§ÄÈÍÍÈÈÍÍÈÈÍÈÈÍÍÈÈ͸ÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍȸ§ÄÄòb¸ÄÄzÍÍÈÈ˚ÈÈÍÍÈÈÍͲÍÈÈÍÍ˙ ÍÈÈÍÍÈÈÍÄz§ÅÅË
  928. Äz§ÍÈÈÍÍÈÈͲÍÍÈÈÍÍ˚ÍÍÈÈÍÍÈÈ˛ÈÍÍÈÈÍ˚z§òV¸§ÄÍÈÍÈ˙ÈÍÈÍÈÍ˚ÈÍÈÍ˙ÍÈÍÈÍÈ˛ħÅÅʧħÄÍÈÍÈ͸ÍÈÍÈ˘ÍÈÍÈÍȸÈÍÈÍ˙§Ä§ôG¸ÄÄÍͯÈÍÍÈ˘ÈͯÈÈÍÍ˝ÄzÅŧÄÄzÍ͢ÈȯÍÈÈ͢Íȯ§ÄÄzõK¸z§ÈÈÍÍ˙ÍÈȯÍÈÈÍ˙ÍÍȸ§ÄÅʼnz§ÄįÍÍÈÈ˙ÈÍͯÈÍÍÈ˙Èz§ÄÄú\¸§ÄÍÈÍÈÍÈÍÈÍÈÍȯÈÍÈÍÈÍÈÍÈÍÈÍ˚ħÅÅ„ħħ˙ÍÈÍÈÍÈÍÈÍÈÍȯÈÍÈÍÈÍÈÍÈÍÈÍħħùa¸z§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈ˘ÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍ˚§Ä¢Äß§úÄz§˚ÈÍÍÈÈÍÍÈÈÍÍÈÈͯÈÈÍÍÈÈÍÍÈÈÍÍÈÈÄÄz§ûü˝§ÄÄÈÍÍÈÈÍÍÈÍÍÈÈÍÍ˙ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˚Äz® ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä‘z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz†ÄÄz˝ÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˙ÈÍÍÈÈÍÍÈÍÍÈÈÍÍȧÄÄzüÀ˝ħÈÍÈÍÈÍ˝ÈÍÈÍÈÍ˚ÈÍÈÍÈÍÈ˝ÍÈÍÈÍȸħ©hħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħħĆħIJÈÍÈÍÈÍ˝ÈÍÈÍÈÍ˚ÈÍÈÍÈÍÈ˝ÍÈÍÈÍÈ˛ħĆ≤˝§ÄÈÈÍ͢ÈÈÍÍ˚ÍÍÈÈÍ˙ÍÍÈÈ͸Äz™z§ÄÈÈÍÍÈ˙ÈÈÍÍȸÍÍÈÈÍͲ.ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz˛ÈÍÍÈ˚ÍÈÈÍ͸z§Ä†z§ÈÍÍÈÈ˘ÍÍÈÈ˚ÈÈÍÍÈ˘ÈÍÍÈ˝z§Ä°à˝ÄzÍ͈ÍÈȸÍÈÈ͈ÍÍȸ§Ä™ÄÄÈÍÍȈÈÈ͸ÈÈÍ͈ÍÈȸÍÈÈ͈ÍÍÈ˝ÈÍÍȈÈÈÍÍ˝ÈÈÍ͢Äz†ÄÄzÍÍÈȈÈÍÍÈ˝ÈÍÍȈÈÈ͸Äz§¢î˝ħ¯Í¸ÍÈ˝ÍÈ¯È˝ÍÈ˝Íħ™§Ä§È¯È˝ÍÈ˝ÍÈÍ¯Í˝ÈÍ˝ÈÍÈ˘ÍÈ˝ÍÈ˝ÍȯÈÍ˝ÈÍ˝Èͯ§Ä§†§Ä§Èͯ͸ÍÈ˝ÍȯȸÈÍ˝ȧħħZ˝Äz˘ÍÍÈÌÈÍ͘§Ä©Äz§ÄÄz§Ä˛ÍÈÈÌÍÍÏÈÍÏÈÈÄÄz§ÄÄüÄÄz˜ÈÈÍÌÍÈÈı§ÄÄz•x˝§ÄÄ˚ÍÈÈÍÓÍÍÈȘÄz®ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄˆÍÈÈÍÓÍÍÈÈÓÈÍÍÈ˛Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§†Äz§ˆÍÍÈÓÈÈÍÍÙz§ÄĶx¸§Ä˚ÍÈÍÈÍÔÈÍÈÍȯħ¢§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§Ä§˚ÈÍÈÍÈÔÍÈÍÈÍÔÈÍÈÍħħħħħħħħħú§Ä§ˆÍÈÍÈÍÔÈÍÈÍÈÙħħßh¸ÄĸÍÍÈÈÍÍÈÍÍÈÈͯÄzîÄÄz§ÄÄz§ÄÍÍÈÈÍÍÈÍÍÈÈÍÒ    ÍÄz§ÄÄz§ÄÄê§ÄÄz˜ÈÈÍÍÈÈÍÈÈÍÍÈÛÄÄz§®≥¸.z§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄê9z§ÄÄz§ÄÄÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§ÄÄz§ç>ÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÄÄz©¢¸§ÄÍÈÍÈÍ˚ÈÍÈÍÈÍÈÍÈÈÍÈÍÈÍÈ˚ ÍÈÍÈÍÈÍÈÍħÄç§Ä§Ä˝ÍÈÍÈÍÈÍÈÍÈÈÍÈÍÈÍȸÈÍÈÍÈÍÈÍÈÈÍÈÍÈÍħħå§Ä§ÄÍÈÍÈÍÍÈÍÈÍÈÍȸÈÍÈÍÈÍÈÍÈÈÍÈÍÈÍÈ˚ÍÈÍÈÍÈÍÈÍÍÈÍÈÍÈÍħęõ¸z§ÍÈÈÍÍ˚ÍÍÈÈÍÍÈÈ˛ÈÍÍÈÈ˙ÈÍÍÈÈÍͲÄÄãÄÄz˝ÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÈÈÍͲÍÈÈÍÄÄzãÄz§ÄÈÈÍÍÈ˛ÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍͲÍÈÈÍÍÈ˚ÍÈÈÍÍÈÈͲ    ÍÍÈÈÍz§Ä´ä¸ÄÄzÍÍÈ˘ÈÍÍÈÈ˚ÈÈÍÍ˙ÍÈÈÍÍÈ˝z§ä§Ä˝ÈÈÍÍÈÈ˚ÈÈ͢ÍÈÈÍÍȸÍÍÄz§ãz§ÄÄÈÍÍÈȸÍÈÈÍz§˝ÍÈÈÍÍȸÍÍÈÈ˘ÍÍÈÈÍ˚ÈÍÍÈ˛Äz§Ä≠u˚ħÈͯÍÈÍÈ˘ÍȯÈÍÈ͸§Ääħ¸ÍÈÍÈ˘ÍÈ˘ÍÈÍÈ˘ÍħÄåħÄÈÍÈ͢ÈͧħħÄÍÈÍÈ˘ÍȯÈÍÈ͢È͸§Ä§ÄÆx˚ÄzÍÍÈÈ˙ÈÍͯÈÍÍÈ˙ÈÈ˙z§ä§Ä¸ÈͯÈÈÍÍÈ˚ÍÈȯÍÄzç§ÄÄzÈÈͯÈȧÄÄz§ÄÄz§ÍÈȯÍÈÈÍ˙ÍÍȯÍÍÈÈ˝§ÄÄzØã˚§ÄÈÈÍÍÈÈÈÈÍÍȯÍÍÈÈÍÍÈÍÈÈÍÍ˙ÄÄäÄzÈÈÍÍȯ ÍÍÈÈÍÍÈÍÍÈÈ͘ȧÄéÄÄz§ÍÈÈÍͯȧÄÄz§z§ÄÄzͯÈÈÍÍÈÈÍÈÍÍÈȯÍÈÈÍÍÈÈÈz§ÄÄ∞ê˚ħÈÍÈÍÈÍÈÍÈÍÈÍÈ˘ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍ˙§ÄäħÄÍÈÍÈÍÈ˘ÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ÈÍħè
  929. ħħÈÍÈÍÈÍÈ˘§Ä§Ä˚§Ä§Ä¯ÈÍÈÍÈÍÈÍÈÍÈÍÈ͢ÈÍÈÍÈÍÈÍÈÍÈÍħħ±ó˚§ÄÈÈÍÍÈÈÍÈÈÍÍÈÈ˙ÈÍÍÈÈÍÍÈÍÍÈÈÍÍ˙ÄÄzäz§ÍÈÈÍÍÈ˙ÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍ˙ÍÈȧÄê z§ÄÈÈÍÍÈÈÍÍÈ˙Äz§Ä˘Äz§Ä˙ÍÈÈÍÍÈÈÍÈÈÍÍÈÈÍ˙ÍÍÈÈÍÍÈÈÍÈÈÍÍÄz§≤ó˚Äz§ÍÈÈ˝ÍÍÈÈÍÍ˚ÍÍÈÈÍÍÈ˝ÈÍÍÈÈÍ˚ȧÄäÄÄÍÍÈÈÍÍ˚ÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÄzíz§ÄÄÈ˝ÍÍÈÈÍ˚z§ÄıÄz§¸ÈÈÍÍÈÈÍ˝ÍÈÈÍÍÈ˚ÍÈÈÍÍÈÈ˝ÍÍÈÈÍÄÄz≥â˙§Ä͢ÈÍÈÍ˚ÈÍÈÍÈ˘ÍÈÍȸÈÍħÄã§ÄÍÈÍÈ͸ÍÈÍÈÍÈ˙ÈÍÈÍȸÈÍÈÍħìħħ˙ÍÈÍÈ˝§Ä§Äۧħ˝ÈÍÈÍÈ˘ÍÈÍÈ˚ÍÈÍÈ͢ÈÍÈÍħħµ|˙z§Ä¯ÈÍ͸ÈÍÍȈÈÈ͸ÈȧÄÄãÄÄ˝ÈÍ͸ÈÍÍȈÈÈÍ˝ÍÈÈÍÄzîÄÄz§˜ÈÍͧÄÄzÒ§ÄÄÍÈÈ͈ÍÍȸÍÍÈȈÈÍÍz§ÄÄ∂á˘Äz¸Í¸ÈÍ˝ÍÈ¯Í˝ÍÈ˝ÈÍÍz§ãz§Í˝ÈÈ˝ÍͯÈÍ˝ÍÈ˝ÈͲ§ÄïÄz§Ä˚ÍÍ˝ÈÈÄÄz§Ôz§ÄÄÈͯȸÍÍ˝ÈÈ¯Í˝ÈÈÄz§Ä∑W˘ħIJÈÍÈÌÍÈÍ٧ħå§ÄÍÏÍÈÚħóħħ˘ÈÍ˚ħħÌħħ¯ÍÈÍÌÈÍÈ˘§Ä§Ä∏\¯z§ÈÍÍÈÓÈÈÍÍÛ§Äåz§ÍÈÓÈÈÍÍÛ§Äòz§ÄĢÈÍÍÈ˝z§ÄÍÄÄz§˙ÍÍÈÈÓÈÍÍȯ§ÄÄzπb¯ÄÄzÍÈÈÍÍÔÍÍÈÈÍÙÄz§çÄÄÈÍÔÈÍÍÈÈÛÄzô§ÄÄz˘
  930. ÍÍÈÈÍz§ÄÄ˧ÄÄz˚ÈÈÍÍÈÔÍÈÈÍ͘§ÄÄ∫f˜ħÈÍÈÍÈÍÍÈÍÈÍÈÙħÄç§ÄÍÈÍÍÈÍÈÍÈÙħö§Ä§Ä˘
  931. ÍÈÍÈÍÈÍħħÊ§Ä§Ä˝ÍÈÍÈÍÈÈÍÈÍÈ͈§Ä§ª≥˜.Äz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈz§ç*ÄÄÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄzúÄÄz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÄÄz§‰2Äz§ÄÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§º•ˆÄĸÍÍÈÈÍÍÈÈÍÈÈÍÍÈÈÍ˚ÈÍÍÈÈÍÍÈÈÍÈÈÍÄÄzéz§ÈÍÍÈÈÍÍÈÈÍÈÈÍÍÈÈ͸ÈÈÍÍÈÈÍÍÈÍÍÈȧÄùÄz§ÄÈÈÍÈÈÍÍÈÈÍÍ˝Äz§Ä·Äz§ÍÈ˚ÍÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍ˚ÍÍÈÈÍÍÈÈÍÈÈÍÄÄz§æûˆ§Ä§˝ÈÍÈÍÈÍÈͲÍÈÍÈÍ˙ÍÈÍÈÍÈÍ˝ÈÍÈÍħé§Ä˛ÈÍÈÍÈÍÈ˝ÍÈÍÈÍ˙ÍÈÍÈÍÈͲÍÈÍħû§Ä§ÄÍÈͲÍÈÍÈÍÈ˝§Ä§fi§Ä§È˚ÍÈÍÈÍÈÍÈ˛ÈÍÈÍÈ˙ÈÍÈÍÈÍÈ˝ÍÈÍħħøçıÄz§˝ÍÈÈÍÍ˚ÍÍÈÈ˙ÈÍÍÈÈÍ˚ÈÍÍÄz§èz§˛ÍÍÈÈÍÍ˚ÍÍÈ˘ÈÍÍÈÈ͸ÈȧÄü§ÄÄzÍÍȸÍÍÈÈ˛z§ÄÄ‹§ÄÄ˙ÈÈÍÍÈ˚ÍÈÈÍ˙ÍÍÈÈÍÍ˚ÍÍÈz§ÄÄ¿|ı§ÄÄ˝ÈÍÍÈ˘ÈͯÈÈÍ͢ÈÈÄÄzêÄÄ˝ÈÍÍÈ˘È͢ÍÈÈ͢ÍÄz°§ÄÄzÍÍÈ˘ÈÍͧÄÄz⁄z§ÄĸÍÍÈÈ˘ÍͯÈÍÍÈ˘ÈÍÄz§Ä¡Ù§Ä§˛ÍÈͯÍÈÍÈ˚ÍÈͯÍÈÍȧħê§Ä˛ÈÍȯÈÍÈÍÈ˚ÍÈͯÍħ¢§Ä§ÄÍÈͯÍÈÍȧħÄÿħħ˝ÈÍȯÈÍÈÍ˚ÈÍȯÈÍÈÍȧħĬàÙÄÄz§ÍÈÈͯÈÈÍÍÈÈÍÈÈÍÍÈȯÍÈÈÍÍÄz§ëÄÄÈÍÍÈÈͯ ÈÈÍÍÈÈÍÈÈÍÍȘÍÄz£Äz§ÄÈÈÍͯÈÍÍÄz§’ÄÄz§ÍÈÈÍͯÈÍÍÈÈÍÍÈÍÍÈÈͯ    ÈÈÍÍÈÈÍÄÄz√êÛ§ÄÄzÍÍÈ˘ÈÍÍÈÈÍÍÈÈÍÍÈÈÍ͢    ÈÈÍÍÈÈÍÄÄzíz§ÍÈÈÍÍÈ˘ÈÍÍÈÈÍÍÈÈÍÍÈÈÍ͢Èȧħz§ÄÄÈÍÍÈÈ˘ÍÍÄz§Ä”§ÄÄzÍÍÈÈ˘ÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈ˘ ÈÍÍÈÈÍÍÈȧÄăïڧħÄÍÈÍ˙ÍÈÍÈÍÈÍÈÈÍÈÍÈ͢    ÈÍÈÍÈÍȧħí§ÄÍÈÍÈÍÈ˙ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍ˙ÍÈÍħ¶
  932. §Ä§ÄÍÈÍÈÍÈÍ˙Íȧħė§Ä§ÄÍÈÍÈ˙ÈÍÈÍÈÍÈÍÍÈÍÈÍÈ˘ ÍÈÍÈÍÈÍÈÍȧħ≈òÒÄz§ÄÈÈ˚ÈÈÍÍÈÈÍ˝ÍÈÈÍÍÈ˚ ÍÈÈÍÍÈÈÄz§ìz§ÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍ˝ÍÈÈÍÍ˙ÍÈȧÄß§ÄÄz˛ÈÍÍÈÈ˙ȧÄÄzŒz§ÄÈÈÍ˚ÈÍÍÈÈÍÍ˝ÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍ˝ÍÄz§Ä«éÄÄzÍ͸ÈÍÍÈÈ͢ÍÈÈ͸ÈÈÍÍÈȸÄÄzîÄÄÍÈÈÍ͸ÈÍÍÈÈ˘ÍÍÈÈ͸ÈÈÍÍÄz®ÄÄz§¸ÈÈÍÍȸÍÄÄz§ÃÄz§ÍȸÍÍÈÈÍ͢ÈÈÍ͸ÈÍÍÈÈÍ˙ÍÄÄz§»zÔħÄ͸ÍÈÍȈÈÍȸÈÍÈ͢ħÄï§Ä˝ÍÈ͸ÍÈÍıÈÍÈ˝ÍÈÍÈħ©ħħ˘ÈÍÈ˝Íħą§Ä§È¸ÈÍÈ͈ÍÈ͸ÍÈÍȈħħ…ÑÓz§ÄÈ˝ÈÍ¯È¸Í˝ÍȯÍÍÄz§ïÄÄÈ˝ÍÍ˝ÈȯÍÈ˝ÈÍ˝ÍÈ˛Äz´Äz§Ä¸ÈÍ˝ÍÈ˛Äz§Ä«§ÄÄz˝ÍÍ¯È¸Í˝ÈȯÍÈ˝z§ÄÄ TÌÄz§ÛÈÍÍÌÈÈÄÄzñz§ÍÈÌÈÍڧĨz§ÄÄ˚ÍÈ˘z§ÄÄ≈z§ÄÄÙÍÍÈÌÈ͸Äz§ÄÀ]ϧħıÈÍÈÍÓÍÈÍÈħÄó§ÄÍÈÓÈÍÈÍÛħ≠ħħ˚ÈÍÈÍ˚ħħ√ħħˆÍÈÍÈÓÈÍÈÍ˚ħÄÃeΧÄĈÈÈÍÍÈ    ÍÍÈÈÍz§Äòz§ÍÈÈÍÈÈÍÍÛ§ÄÆÄÄz§˚ÈÍÍÈȸÄÄz§¡ÄÄz§˜ÈÍÍÈÈÍÈÈÍÍ˙ÄÄzÕkÍz§Ä¯ÈÍÍÈÈÍ
  933. ÈÈÍÍÈÈÄz§ôÄÄÈÍÍÒÈÈÍÍÈÈÍÙÄzØÄz§˘ÍÈÈÍÍÈ˛Äz§æ§ÄÄz˘ÍÍÈÈÍÍÈÍÍÈÈÍ˙§ÄÄzœ¥È.ħÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȧħÄú+ħÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħ±ħħÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħª2ħÄÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȧħĖ¶Ë    ÄÄz§ÍÈÈÍÍÈ˚ÍÈÈÍÍÈÈÍÍÈÍÍÈÈÍ͸ÈÍÍÈȧÄÄzù§Ä˛ÍÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍȸÍÍÈÈÍÍÈÈÍÈÈÍÍÄz≤z§ÄÄÈÍÈÈÍÍÈÈ͸Èz§ÄÄπz§ÄÈÈÍÍÈÈ˚ÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍȸÍÍÈÈÍÍÈÈÍÄz§Ä—ôÁ§ÄÄzÍÍÈÈ˙ÈÍÍÈÈÍÍ˝ÈÈÍÍÈ˙ÈÈÍÍÈz§ÄÄûÄz˝ÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÈÈÍͲÍÈȧĥz§ÄÄzÍ˝ÍÈÈÍÍ˚§ÄÄz∑Äz§ÍÈÈÍ˙ÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÈÈÍͲÄÄz§“äʧħħÈÍ˙ÍÈÍÈÍÈ˚ÍÈ͢    ÈÍÈÍÈÍħħüħ˝ÈÍÈÍÈÍ˚ÈÍÈ˘ÍÈÍÈÍȸÈÍħµħħÈÍ˚ÈÍÈ˚§Ä§Äµ§Ä§ÄÍÈ˙ÈÍÈÍÈÍ˚ÈÍÈ˘ÍÈÍÈÍȸħħ”s‰z§ÄįÍÍÈÈ˘ÍͯÈÍͲÄÄz§†Äz¸ÍÈȯÍÈ˘ÈÍÍÈ˘ȧÄ∂ÄÄz§ÍÈ˘È͸Äz§Ä≥§ÄÄz¯ÍÈÈ͢ÍȯÍÍȯ§ÄÄ‘„Äz§ÄÈ˚ÍÈȯÍÈÈÍÍ˚ÍÍÈ˚ÄÄz°§Ä˝ÈÈͯÈÈÍÍÈ˚ÍÈȯÍÄz∏ÄÄz§Íȯ
  934. ÍÍÈÈÍz§Äız§ÄÄÈ˚ÈÈͯÈÈÍÍÈ˚ÍÈȯÍÈz§ÄÄ÷è· Ä§Ä§ÈÈÍÈÍÈͯÍÈÍÈÍÈÍÍÈÍÈÍÈ˙ħħ£Ä§ÍÈÍÈÍȯÈÍÈÍÈÍÈÈÍÈÍÈ͢ÈÍħπħħÈÍȯ    ÈÍÈÍÈÍÄ§Ä§Ø Ä§ÄÍÈÍÍÈÍÈÍȯÈÍÈÍÈÍÈÈÍÈÍÈͯÍÈÍħħ◊î‡
  935. ÄÄz§ÍÈÈÍÍÈÈ˘ÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈ˘z§Äħ§ÄÈÈÍÍÈÈ͢ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ÍÍÄzªÄz§ÄÈÈÍÍÈ˘    ÈÍÍÈÈÍÄÄz§≠ ÄÄzÍÍÈÈÍÍÈÈ͢ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈ˘ÍÍÈÈÍÄÄz§ÿòÅÍÄõÍHHˆt|&∂IJˇˇˇˇˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇÃÃˇˇˇˇÃÃÃÃˇˇÃÃôô    ˇˇÃÃff
  936. ˇˇÃÃ33 ˇˇÃà ˇˇôôˇˇˇˇôôÃÃˇˇôôôôˇˇôôffˇˇôô33ˇˇôôˇˇffˇˇˇˇffÃÃˇˇffôôˇˇffffˇˇff33ˇˇffˇˇ33ˇˇˇˇ33ÃÃˇˇ33ôôˇˇ33ffˇˇ3333ˇˇ33ˇˇˇˇˇˇÃàˇˇôô!ˇˇff"ˇˇ33#ˇˇ$ÃÃˇˇˇˇ%ÃÃˇˇÃÃ&ÃÃˇˇôô'ÃÃˇˇff(ÃÃˇˇ33)ÃÃˇˇ*ÃÃÃÃˇˇ+ÃÃÃÃÃÃ,ÃÃÃÃôô-ÃÃÃÃff.ÃÃÃÃ33/ÃÃÃÃ0ÃÃôôˇˇ1ÃÃôôÃÃ2ÃÃôôôô3ÃÃôôff4ÃÃôô335ÃÃôô6ÃÃffˇˇ7ÃÃffÃÃ8ÃÃffôô9ÃÃffff:ÃÃff33;ÃÃff<ÃÃ33ˇˇ=ÃÃ33ÃÃ>ÃÃ33ôô?ÃÃ33ff@ÃÃ3333AÃÃ33BÃÃˇˇCÃÃÃÃDÃÃôôEÃÃffFÃÃ33GÃÃHôôˇˇˇˇIôôˇˇÃÃJôôˇˇôôKôôˇˇffLôôˇˇ33MôôˇˇNôôÃÃˇˇOôôÃÃÃÃPôôÃÃôôQôôÃÃffRôôÃÃ33SôôÃÃTôôôôˇˇUôôôôÃÃVôôôôôôWôôôôffXôôôô33YôôôôZôôffˇˇ[ôôffÃÃ\ôôffôô]ôôffff^ôôff33_ôôff`ôô33ˇˇaôô33ÃÃbôô33ôôcôô33ffdôô3333eôô33fôôˇˇgôôÃÃhôôôôiôôffjôô33kôôlffˇˇˇˇmffˇˇÃÃnffˇˇôôoffˇˇffpffˇˇ33qffˇˇrffÃÃˇˇsffÃÃÃÃtffÃÃôôuffÃÃffvffÃÃ33wffÃÃxffôôˇˇyffôôÃÃzffôôôô{ffôôff|ffôô33}ffôô~ffffˇˇffffÃÃÄffffôôÅffffffÇffff33ÉffffÑff33ˇˇÖff33ÃÃÜff33ôôáff33ffàff3333âff33äffˇˇãffÃÃåffôôçfffféff33èffê33ˇˇˇˇë33ˇˇÃÃí33ˇˇôôì33ˇˇffî33ˇˇ33ï33ˇˇñ33ÃÃˇˇó33ÃÃÃÃò33ÃÃôôô33ÃÃffö33ÃÃ33õ33ÃÃú33ôôˇˇù33ôôÃÃû33ôôôôü33ôôff†33ôô33°33ôô¢33ffˇˇ£33ffÃç33ffôô•33ffff¶33ff33ß33ff®3333ˇˇ©3333ÃÙ3333ôô´3333ff¨333333≠3333Æ33ˇˇØ33ÃÃ∞33ôô±33ff≤3333≥33¥ˇˇˇˇµˇˇÃÃ∂ˇˇôô∑ˇˇff∏ˇˇ33πˇˇ∫ÃÃˇˇªÃÃÃúÃÃôôΩÃÃffæÃÃ33øÃÿôôˇˇ¡ôôÃìôôôô√ôôffƒôô33≈ôôΔffˇˇ«ffÃûffôô…ffff ff33ÀffÃ33ˇˇÕ33ÃÃŒ33ôôœ33ff–3333—33“ˇˇ”ÃÑôô’ff÷33◊ÿˇˇˇŸ˘`˘`˘`⁄Ú–Ú–Ú–€Ï@Ï@Ï@‹Â∞Â∞Â∞›fl fl fl fiÿêÿêÿêfl“““‡ÀpÀpÀp·ƒ‡ƒ‡ƒ‡‚æPæPæP„∑¿∑¿∑¿‰±0±0±0™†™†™†Ê§§§ÁùÄùÄùÄËñññÈê`ê`ê`Íâ–â–â–ÎÉ@É@É@Ï|∞|∞|∞Ìv v v ÓoêoêoêÔiiibpbpbpÒ[‡[‡[‡ÚUPUPUPÛN¿N¿N¿ÙH0H0H0ıA†A†A†ˆ;;;˜4Ä4Ä4į---˘'`'`'`˙ – – –˚@@@¸∞∞∞˝   ˛êêêÄõÍ∂D—.'öfiÄÄz§ÍÈÈÍ͢ÈÈÍÍÈÈÍÍÈÍÍÈÈÍ˙ÍÍÄz§ÄĶÄzÍÈÈÍÍÈ˙ÈÈÍÍÈÈÍÍÈÍÍÈÈÍÍ˙ÍÈȧÄΩ
  937. Äz§ÄÄÈÍÍÈÈÍ˙    ÍÍÈÈÍÍÈz§Ä´
  938. §ÄÄÈÍÈÈÍÍÈ˘ÈÍÍÈÈÍÍÈÍÍÈÈÍÍ˙
  939. ÍÈÈÍÍÈȧÄÄzŸü›Ä§Ä§ÈÍÈÍÈ˚ÍÈÍÈÍÈÍ˝ÈÍÈÍÈ˙ÈÍÈÍħħĩ
  940. §Ä§ÈÍÈÍÈÍ˚ÈÍÈÍÈ͸ÍÈÍÈÍ˙ÍȧħøÄ§Ä§Ä§ÈÍÈÍÈÍ˚ÈÍÈÍÈÍħĩ
  941. §Ä§ÈÍÈÍÈÍ˚ÈÍÈÍÈÍÈ˝ÍÈÍÈÍ˙ÍÈÍÈÍÈ˛ħÄ⁄ï‹z§ÄÄzÍÍȸÍÍÈÈͯÈÈÍ͸
  942. ÈÍÍÈÈÄz§Ä™ÄĸÍÍÈȸÍÈÈÍ͢ÈÈÍÍȸÍÍÈz§¿Äz§ÄÄz˚ÈÈÍ͸ÈÍÍÈÈÄÄzßÄz§˛ÍÍÈȸÍÈÈÍͯÈÍÍȸÍÍÈÈÍ˚z§ÄÄ‹Ö⁄z§ÄÄz͸ÈÈÍıÍÈÈ˝ÍÍÈȸÄÄz§Ä≠Äz§˚ÈÍ͸ÈÍÍıÈÈÍ˝ÍÈÈÍÄÄ¡z§ÄÄz¯ÍÈȸÍÈÈ˛z§•ÄÄ˝ÈÍ͸ÈÍÍıÈÈÍ˝ÍÈÈͯÄz§Ä›èÿ    §Ä§Ä§ÄÍȯÈÍ˝ÈÍ˝Èͯ§Ä§Ä§∞§Ä§È͸ͽÈͯÍÈ˝ÍÈ˝ÍÈħÄ√§Ä§Ä§˙͸ͽÈÍ˝ħĕ§Ä§¸Í˝ÈͯÍÈ˝ÍÈ˝ÍȯÈͧħÄfi]÷z§ÄÄz§ˆÍÍÌÈÈÍÄÄz§Ä≤ÄIJÈÈÍÌÍÈız§Ä≈Äz§ÄÄz˘ÍÍÈÚÄz£ÄzÍÌÍÈÌ    ÈÍͧÄÄz§‡l‘z§ÄÄz§˘ÍÈÈÍÓ    ÍÍÈÈÄÄz§ÄµÄz§ÈÍÍÈÓÈÈÍͯz§ÄÄ»§ÄÄz§ÄÄz¯ÍÈÈÍÚ§Ä£§ÄÄÓÈÈÍÍÓÍÈÈͲ§ÄÄz§‚z“§Ä§Ä§Ä¸ÈÍÈÍÈÔÍÈÍÈͲ§Ä§Ä§Äπ
  943. §Ä§ÈÍÈÍÈÍÍÈÍÈ͢ħħ §Ä§Ä§Ä§ÄˆÈÍÈÍÈÍÛħħħÈÍÍÈÍÈÍÔÈÍÈÍȸħħĉќ§ÄÄz§˛ÍÍÈÈÍÍÒÈÈÍÍÈÈÍ˝ÄÄz§ÄÄzºÄIJÈÈÍÍÈÈÒÍÍÈÈÍÍÈ˚ÄÄz§ÃÄz§ÄÄz§ÚÍÍÈÈÍÍÚÄÄz§®Äz§ÄÈÈÍÈÈÍÍÈÒÈÍÍÈÈÍÍ˚§ÄÄz§ÊÊÕ/§ÄÄz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÄz§ÄÄz¡-§ÄÄz§ÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄÄz§ÄŒ6ÄÄz§ÄÄzÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄÄz§ÄÄzØBÄz§ÄÄÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈÈÍÍÈȧÄÄz§ËÀħħħ˛ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȸÈÍÈÍÈÍÈÍÈħħħÄΔ    Ä§Ä§Ä§ÈÍÈ͸ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍȸȧħħħ—ħħħħĽÍÈÍÈÍÈÍÈÍÍÈÍÈÍÈÍ˚ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈÄ§Ä§Ä§Ä§Ä§Ä§æ §Ä§Ä§Ä§Ä§Ä§Ä¸ÈÍÈÍÈÍÈÍÈÈÍÈÍÈÍȸÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͸ÍÈÍÈÍÈÍÈÍÍħħħħ̈…§ÄÄz§ÄÄÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙ÈÍÍÈÈÍͲ    ÍÈz§ÄÄz§ÄÄÃ
  944. §ÄÄz§ÄÈÈÍÍÈ˙ÈÈÍÍÈÈÍ˝ÍÈÈÍ͸z§ÄÄz§‘ Äz§ÄÄz§ÄÄz§Ä˙ÍÈÈÍÍÈÈ˝ÍÍÈÈÍ˙ÍÍÈÈÍÍÈ˝ÈÍÍÈÈ˙z§ÄÄz§ÄÄz§ÄÄz§Äœ§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ˙ÈÈÍÍÈÈÍ˝ÍÈÈÍÍ˙ÍÈÈÍÍÈÈ˝ÍÍÈÈÍ˙ÍÍÈÈÍÍÈ˛Èz§ÄÄz§ÄÄz§ÄÄzÛÚΔ
  945. ÄÄz§ÄÄz§ÍÈÈ˚ÈÈ͢ÍÈÈÍÍȸÍÍÈȧÄÄz§ÄÄz§Ä”§ÄÄz§˝ÍÈÈ˘ÍÍÈÈÍÍ˚ÍÍÈ˛Äz§ÄÄz§÷§ÄÄz§ÄÄz§ÄÄÍÍÈÈ˘ÍÍÈÈÍ˚ÈÍÍÈ˙ÈÈÍÍÈÈ˚ÈÈ͢ÍÈÈÍÍÈz§ÄÄz§ÄÄz§ÄÄz÷ z§ÄÄz§ÄÄz§ÄÄz¸ÍÈÈÍ˙ÍÍÈÈÍÍ˚ÍÍÈ˘ÈÍÍÈÈÍ˚ÈÍ͢ÈÈÍÍÈȸÍÈÈÍz§ÄÄz§ÄÄz§ÄÄz˘»√ħħħħ˙ÍÈ˘ÍÈÍÈ˘ÍÈÍ˝
  946. ħħħħħ§ħħÄ˙ÈͯÍÈͯÍÈħħħ’ħħħĢÍÈ͢ÈÍÈ͢ÈͯÍÈͯÍȯÈÍȯȧħħħŸħħIJÈÍÈ͢ÈͯÍÈÍÈ˘ÍȯÈÍȯÈ͢ÈÍÈ͢ÈÍÈ˘§Ä§Ä§Ä§Ä˙Êø§ÄÄz§ÄÄzÈÈÍÍÈ˚ÍÈȯÍÈÈÍÍ˚ÍÄÄz§ÄÄz§ÄÄz§ÄÄÓÄz§ÄÄz§ÄÄz§ÄÄz§˘ÍÈÈÍÍ˚ÍÍȯÍÄÄz§ÄÄ“Äz§ÍÈȯÍÈÈÍ˚ÈÍͯÈÍÍÈÈ˚ÈÈͯÈÈÍÍÈ˚ÍÈȯ    ÍÈÈÍÍz§ÄÄ⁄Äz§˝ÍÈȘÈÈÍÍ˚ÍÍȯÍÍÈÈÍ˚ÈÍͯÈÍÍÈÈ˚ÈÈͯÈÈÍÍÈ˚ÍÈÈ˛z§Ä˚ºÄÄz§ÄÄz§ÍÈÈÍÍÈÍÍÈÈͯÈÈÍÍÈÈÍÍÈÍÍÈÈ˛*z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍͯÈÍÍÈÈÍÍÈÍÍÈÈÍ˙§ÄÄz§ÄÄ—z§ÄÈÈͯÈÈÍÍÈÈÍÈÈÍÍÈȯÍÈÈÍÍÈÈÍÈÈÍÍȯÍÍÈÈÍÍÈÍÍÈÈÍ͢
  947. ÈÈÍÍÈÈÍÍÄz§⁄    §ÄÈÍÍÈÈÍͯÈÍÍÈÈÍÍÈÍÍÈÈͯÈÈÍÍÈÈÍÈÈÍÍÈȯ ÍÈÈÍÍÈÈÍÈÈÍͯÈÍÍÈÈÍÍÈÍÍÈÈÍ˝ÄÄz˚&πħħħħÄÍÈÍÈÍÈÍÈ͢ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈ˘$ÍÈÍħħħħħħħħħħÄÍÈÍÈÍÈÍÈÍÈÍÈ͢ÈÍÈÍÈÍÈÍÈÍÈÍÈÍÈħħħħħŒ§Ä§ÈÍÈ˘'ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħħħħħħħħħħÄ˚ÍÈÍÈÍÈÍÈÍÈÍÈÍÈ͢    ÈÍÈÍÈÍȧħŸ    Ä§Ä§ÈÍÈÍÈ͢<ÈÍÈÍÈÍȧħħħħħħħħħħħħħħħħħħħħÄÍÈÍÈÍÈÍÈÍÈÍÈ˘ÍÈÍÈÍÈÍÈÍÈÍÈÍÈÍħħ˚0µ§ÄÄz§ÄÄz§ÄÄÈÍÍ˙ÍÈÈÍÍÈÈÍÈÈÍÍÈÈÍ˙ÍÍÈÈÍÍÈÈÍÈÈÍÍÈÈ˙ÈÍÍÈÈÍÍÈÍÍÈÈÍ͢ÈÈÍÍÈÈÍÍȧÄÄz§ÄÄz§ÄÄz§ M§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ä˛    ÍÄz§ÄÄz§ÄÄ◊iÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄ˙ϱ Äz§ÄÄz§ÄÄz§ÄIJÈÈÍÍÈÈ͸ÈÈÍÍÈ˚ÍÈÈÍÍÈȸÍÈÈÍÍ˚ÍÍÈÈÍÍÈ˝ÈÍÍÈÈÍ˚ÈÍÍÈȧÄÄz§ÄÄz§ÄÄz§√z§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Ï%Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz‘ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzŸ&§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄįW´ħħħħħħÄÍÈ˘ÍÈÍÈ˚ÍÈÍÈ͢ÈÍÈ͸ÍÈÍÈÍÈ˘ÍÈÍȸ ħħħħħħÄÅҧħħÄÅfiJ•Äz§ÄÄz§ÄÄz§ÄÄz§ÄÄÍÈÈ˝ÍÍÈÈıÍÍÈ˝ÈÍÍÈ˚ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÅŬLüBÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄzÍz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§ÄÄz§Åź5ï+ħħħħħħħħħħħħħħħħħħħħħħÅÅØÇz§ÄÄzÅÅõÅÅÅóÅÅÅóÅÅÅó†è†É†ø
  948. d,     Helvetica    .°dONLNd¿ñÀæ+¥ÁFigure 6°dONLNd    Ãñ◊\* 2Our Text Outlined With Color and Filled With Stars°dONLNd<Óñ˘ô*"+EXAMPLE 2: A SHAPE CONTAINING A LINE LAYOUT, Palatino
  949. °dONLNdh˘ñ¸* TIn a text shape, all the text can be rendered in only one font and size. In a layout°dONLNdΩñ˙* Pshape, on the other hand, the text can be rendered in a combination of different°dONLNdñ* Sfonts and sizes by applying multiple style runs. A layout shape can contain as many°dONLNdbñ)* Vstyle runs as you like. A style controls the font, the size, the script (such as Roman°dONLNdπ)ñ5Ò* Nor Arabic), run features (which pertain to swashes, ligatures, and final forms°dONLNd5ñA* Uavailable with the specified font), justification overrides, and kerning adjustments.°dONLNd_MñY˘*NTo illustrate QuickDraw GX’s line layout features, we’ll create a layout shape°dONLNdÆYñe* Mcontaining the text “Catch the Nasty WAVE, Dude.” We’ll start by creating the°dONLNd¸eñq* Tstyles to be applied in three different style runs, and then we’ll define the layout°dONLNdQqñ}* Pshape. Finally, we’ll make the whole line of text slant backward, to demonstrate°dONLNd¢}ñâ* Othat you can perform any graphical operation on typographic shapes in QuickDraw°dONLNdÚâñïß* GX.    °dONLNd˜¢ñ≠˘*Creating the styles.
  950. °dONLNd °˘≠ˆ)c9 We’re going to apply styles to our layout shape in three°dONLNdE≠ñπ(’¥Udifferent runs. The first run of text, “Catch the Nasty,” will use the Hoefler Italic°dONLNdõπñ≈ˇ* Ofont; the second run, “WAVE,” will use the Times Roman font; and the third run,°dONLNdÎ≈ñ—¸* R“Dude,” will use Hoefler Italic again. In the first and third runs, we’ll enable a°dONLNd>—ñ›Ù* Ototal of three of the run features available with Hoefler Italic. But before we°dONLNdé›ñȈ* Rcreate the styles, we need to initialize the run controls used to regulate the run°dONLNd·Èñı®* =features. We specify the number of run features and styles we    °dONLNdÍ®ı¬(Δ’ll use.,
  951. Courier°dONLNd'ñ◊()¥gxRunControls°dONLNd6Ì))W runControls;°dONLNdCñ“(5¥ gxRunFeature°dONLNdQÌ8)WrunFeatures[3];°dONLNdañ%π(A¥gxStyle°dONLNdlÌ%)W
  952. styles[3];°dONLNdw2ñ=J(Y¥$InitializeRunControls(&runControls); uBu/ (x& +
  953. 26+pd)e)v)e)l)o)p)  )Issue 15ˇ†æ°¿9psecurrentpoint/picTop exch def/picLeft exch defpsb†ø†æ°¿=psecurrentpoint/picBottom exch def/picRight exch defpsb†ø†æ°¿[ -27 384 463 539]°¿€1 dict begin /s exch defpicLeft picTop translatepicRight picLeft sub s 2 get s 0 get sub divpicBottom picTop sub s 1 get s 3 get sub divscales 0 get neg s 3 get neg translateend/showpage {} def/copypage {} def°¿ %!PS-Adobe-3.0 EPSF-3.0%%Creator: Adobe Illustrator(TM) 3.2%%For: (Diane Wilcox) (Apple Computer, Inc.)%%Title: (Alexander_Fig 06 v.4)%%CreationDate: (6/24/93) (10:40 AM)%%BoundingBox: -27 384 463 539%%DocumentProcessColors: Black%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0%%+ procset Adobe_cmykcolor 1.1 0%%+ procset Adobe_cshow 1.1 0%%+ procset Adobe_customcolor 1.0 0%%+ procset Adobe_pattern_AI3 1.0 0%%+ procset Adobe_Illustrator_AI3 1.0 1%AI3_ColorUsage: Color%%DocumentCustomColors: (PANTONE 541 CV)%%CMYKCustomColor: 1 0.51 0 0.305 (PANTONE 541 CV)%AI3_Cropmarks: -30 370 463 551%AI3_TemplateBox: 221 396 221 396%AI3_TileBox: -55 31 497 761%AI3_DocumentPreview: Macintosh_ColorPic%%EndComments%%BeginProlog%%BeginResource: procset Adobe_packedarray 2.0 0%%Title: (Packed Array Operators)%%Version: 2.0 %%CreationDate: (8/2/90) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)userdict /Adobe_packedarray 5 dict dup begin put/initialize            % - initialize -{/packedarray where    {    pop    }    {    Adobe_packedarray begin    Adobe_packedarray        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    } ifelse} def/terminate            % - terminate -{} def/packedarray        % arguments count packedarray array{array astore readonly} def/setpacking            % boolean setpacking -{pop} def/currentpacking        % - setpacking boolean{false} defcurrentdict readonly pop end%%EndResourceAdobe_packedarray /initialize get exec%%BeginResource: procset Adobe_cmykcolor 1.1 0%%Title: (CMYK Color Operators)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cmykcolor 4 dict dup begin put/initialize            % - initialize -{/setcmykcolor where    {    pop    }    {    userdict /Adobe_cmykcolor_vars 2 dict dup begin put    /_setrgbcolor        /setrgbcolor load def    /_currentrgbcolor        /currentrgbcolor load def    Adobe_cmykcolor begin    Adobe_cmykcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    end    Adobe_cmykcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_cmykcolor eq    {    end    } if} def/setcmykcolor        % cyan magenta yellow black setcmykcolor -{1 sub 4 1 roll3    {    3 index add neg dup 0 lt        {        pop 0        } if    3 1 roll    } repeatAdobe_cmykcolor_vars /_setrgbcolor get execpop} def /currentcmykcolor    % - currentcmykcolor cyan magenta yellow black{Adobe_cmykcolor_vars /_currentrgbcolor get exec3    {    1 sub neg 3 1 roll    } repeat0} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_cshow 1.1 0%%Title: (cshow Operator)%%Version: 1.1 %%CreationDate: (1/23/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_cshow 3 dict dup begin put/initialize            % - initialize -{/cshow where    {    pop    }    {    userdict /Adobe_cshow_vars 1 dict dup begin put    /_cshow        % - _cshow proc        {} def    Adobe_cshow begin    Adobe_cshow        {        dup xcheck            {            bind            } if        userdict 3 1 roll put        } forall    end    end    } ifelse} def/terminate            % - terminate -{} def/cshow                % proc string cshow -{exchAdobe_cshow_vars    exch /_cshow    exch put    {    0 0 Adobe_cshow_vars /_cshow get exec    } forall} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_customcolor 1.0 0%%Title: (Custom Color Operators)%%Version: 1.0 %%CreationDate: (5/9/88) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_customcolor 5 dict dup begin put/initialize            % - initialize -{/setcustomcolor where    {    pop    }    {    Adobe_customcolor begin    Adobe_customcolor        {        dup xcheck            {            bind            } if        pop pop        } forall    end    Adobe_customcolor begin    } ifelse} def/terminate            % - terminate -{currentdict Adobe_customcolor eq    {    end    } if} def/findcmykcustomcolor    % cyan magenta yellow black name findcmykcustomcolor object{5 packedarray}  def/setcustomcolor        % object tint setcustomcolor -{exchaload pop pop4    {    4 index mul 4 1 roll    } repeat5 -1 roll popsetcmykcolor} def/setoverprint        % boolean setoverprint -{pop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_pattern_AI3 1.0 0%%Title: (Adobe Illustrator (R) Version 3.0 Pattern Operators)%%Version: 1.0 %%CreationDate: (7/21/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_pattern_AI3 16 dict dup begin put/initialize            % - initialize -{/definepattern where    {    pop    }    {    Adobe_pattern_AI3 begin    Adobe_pattern_AI3        {        dup xcheck            {            bind            } if        pop pop        } forall    mark    cachestatus 7 1 roll pop pop pop pop exch pop exch        {        {        10000 add        dup 2 index gt            {            break            } if        dup setcachelimit        } loop        } stopped    cleartomark    } ifelse} def/terminate            % - terminate -{currentdict Adobe_pattern_AI3 eq    {    end    } if} deferrordict/nocurrentpoint        % operator nocurrentpoint -{popstop} puterrordict/invalidaccess        % operator invalidaccess -{popstop} put/patternencoding256 array def0 1 255{patternencoding exch ( ) 2 copy exch 0 exch put cvn put} for/definepattern        % width height matrix procarray key cache uniform definepattern font{17 dict begin/uniform exch def/cache exch def/key exch def/procarray exch def/mtx exch matrix invertmatrix def/height exch def/width exch def/ctm matrix currentmatrix def/ptm matrix def/str 32 string def/slice 9 dict defslice /s 1 putslice /q 256 procarray length div sqrt floor cvi putslice /b 0 put/FontBBox [0 0 0 0] def/FontMatrix mtx matrix copy def/Encoding patternencoding def/FontType 3 def/BuildChar        % dict char BuildChar -    {    exch    begin    slice begin    dup q dup mul mod s idiv /i exch def    dup q dup mul mod s mod /j exch def    q dup mul idiv procarray exch get    /xl j width s div mul def    /xg j 1 add width s div mul def    /yl i height s div mul def    /yg i 1 add height s div mul def    uniform        {        1 1        }        {        width 0 dtransform        dup mul exch dup mul add sqrt dup 1 add exch div        0 height dtransform        dup mul exch dup mul add sqrt dup 1 add exch div        } ifelse    width 0 cache        {        xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul        setcachedevice        }        {        setcharwidth        } ifelse    gsave    scale    newpath    xl yl moveto    xg yl lineto    xg yg lineto    xl yg lineto    closepath    clip    newpath    end    end    exec    grestore    } defkey currentdict definefontend} def/patterncachesize    % - patterncachesize bits{gsavenewpath0 0 movetowidth 0 linetowidth height lineto0 height linetoclosepathpatternmatrix setmatrixpathbboxexch ceiling 4 -1 roll floor sub 3 1 rollceiling exch floor submul 1 addgrestore} def/patterncachelimit    % - patterncachelimit bits{cachestatus 7 1 roll 6 npop 8 mul} def/patternpath        % index font matrix patternpath -{exch dup begin setfontctm setmatrixconcatslice exch /b exch slice /q get dup mul mul putFontMatrix concatuniform    {    width 0 dtransform round width div exch round width div exch    0 height dtransform round height div exch height div exch    0 0 transform round exch round exch    ptm astore setmatrix    }    {    ptm currentmatrix pop    } ifelse{currentpoint} stopped not    {    2 npop    pathbbox    true    4 index 3 index eq    4 index 3 index eq    and        {        pop false            {            {2 npop}            {3 npop true}            {7 npop true}            {pop true}            pathforall            } stopped            {            5 npop true            } if        } if        {        height div ceiling height mul 4 1 roll        width div ceiling width mul 4 1 roll        height div floor height mul 4 1 roll        width div floor width mul 4 1 roll        2 index sub height div ceiling cvi exch        3 index sub width div ceiling cvi exch        4 2 roll moveto        FontMatrix mtx invertmatrix        dup dup 4 get exch 5 get rmoveto        ptm ptm concatmatrix pop        slice /s        patterncachesize patterncachelimit div ceiling sqrt ceiling cvi        dup slice /q get gt            {            pop slice /q get            } if        put        0 1 slice /s get dup mul 1 sub            {            slice /b get add            gsave            0 1 str length 1 sub                °¿ {                str exch 2 index put                } for            pop            dup                {                gsave                ptm setmatrix                1 index str length idiv {str show} repeat                1 index str length mod str exch 0 exch getinterval show                grestore                0 height rmoveto                } repeat            grestore            } for        2 npop        }        {        4 npop        } ifelse    } ifend} def/patternclip        % - patternclip -{clip} def/patternstrokepath    % - patternstrokepath -{strokepath} def/patternmatrix        % - patternmatrix matrixmatrix def/patternfill        % index font patternfill -                    % index font matrix patternfill -{dup type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get    } ifgsavepatternclipAdobe_pattern_AI3 /patternpath get execgrestorenewpath} def/patternstroke        % index font patternstroke -                    % index font matrix patternstroke -{dup type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get    } ifgsavepatternstrokepathtrue    {        {            {            newpath             moveto            }            {            lineto            }            {            curveto            }            {            closepath            3 copy            Adobe_pattern_AI3 /patternfill get exec            } pathforall        3 npop        } stopped            {            5 npop            patternclip            Adobe_pattern_AI3 /patternfill get exec            } if    }    {    patternclip    Adobe_pattern_AI3 /patternfill get exec    } ifelsegrestorenewpath} def/patternashow        % index font ax ay string patternashow -                    % index font matrix ax ay string patternashow -{3 index type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get 4 1 roll    } if    {    2 npop (0) exch    2 copy 0 exch put pop    gsave    false charpath currentpoint    6 index 6 index 6 index    Adobe_pattern_AI3 /patternfill get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow5 npop} def/patternawidthshow        % index font cx cy char ax ay string patternawidthshow -                        % index font matrix cx cy char ax ay string patternawidthshow -{6 index type /dicttype eq    {    Adobe_pattern_AI3 /patternmatrix get 7 1 roll    } if    {    2 npop (0) exch    2 copy 0 exch put     gsave    _sp eq {5 index 5 index rmoveto} if    false charpath currentpoint    9 index 9 index 9 index    Adobe_pattern_AI3 /patternfill get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow8 npop} def/patternashowstroke    % index font ax ay string matrix patternashowstroke                    % index font matrix ax ay string matrix patternashowstroke{4 index type /dicttype eq    {    patternmatrix /patternmatrix get 5 1 roll    } if4 1 roll    {    2 npop (0) exch    2 copy 0 exch put pop    gsave    false charpath    currentpoint    4 index setmatrix    7 index 7 index 7 index    Adobe_pattern_AI3 /patternstroke get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow6 npop} def/patternawidthshowstroke    % index font cx cy char ax ay string matrix patternashowstroke                    % index font matrix cx cy char ax ay string matrix patternashowstroke{7 index type /dicttype eq    {    patternmatrix /patternmatrix get 8 1 roll    } if7 1 roll    {    2 npop (0) exch    2 copy 0 exch put    gsave    _sp eq {5 index 5 index rmoveto} if    false charpath currentpoint    7 index setmatrix    10 index 10 index 10 index    Adobe_pattern_AI3 /patternstroke get exec    grestore    newpath moveto    2 copy rmoveto    } exch cshow9 npop} defcurrentdict readonly pop endsetpacking%%EndResource%%BeginResource: procset Adobe_Illustrator_AI3 1.0 2%%Title: (Adobe Illustrator (R) Version 3.0 Full Prolog)%%Version: 1.0 %%CreationDate: (7/22/89) ()%%Copyright: ((C) 1987-1990 Adobe Systems Incorporated All Rights Reserved)currentpacking true setpackinguserdict /Adobe_Illustrator_AI3 71 dict dup begin put% initialization/initialize                % - initialize -{% 56 vars, but leave slack of 10 ent